home *** CD-ROM | disk | FTP | other *** search
/ Chip: Internet / Chip Internet.iso / viewer / emtex.ins / dvilj4 / dvi2xx.c < prev    next >
Text File  |  1995-02-17  |  151KB  |  4,428 lines

  1. #define VERSION "0.51alpha6"
  2. /**********************************************************************
  3.  ****************************  Intro  *********************************
  4.  **********************************************************************
  5.  * This program translates TeX's DVI-Code into device dependent
  6.  * code of either the
  7.  *
  8.  *     -   HP-LASERJET+ and compatibles (PCL), or the
  9.  *     -   IBM 3812 pageprinter
  10.  *
  11.  * depending on the preprocessor switches specified before compilation.
  12.  * The program is written to run on a PC XT/AT/PS2 under MS-DOS. It can
  13.  * be compiled nicely with MSC Rel. 3.0-5.1 with option -AL (large memory
  14.  * model).  Take care that in the CONFIG.SYS file the FILES parameter
  15.  * is set to 20; otherwise reduce MAXOPEN.  640K are recommended.
  16.  * I use link option /stack:9000 to increase runtime stack.
  17.  * It also works without modifications under Unix System V.
  18.  **********************************************************************
  19.  *            Adapted for the PC:    Gustaf Neumann
  20.  *            +1002 stuff        University of Economics
  21.  *            +3812 support      Augasse 2-6
  22.  *            +Output buffering      A-1090 Vienna, AUSTRIA
  23.  *            +lpt binary support    Tel. *43-222-340525/533
  24.  *            +pk-89 stuff                   773
  25.  *            +pixelpaths
  26.  *            +alternative directory structure
  27.  *            +code compiles also under Unix V (HP/UX)
  28.  *                      (thx Michael Haberler)
  29.  *            +huge characters (a character bigger than 32K)
  30.  *                      formats PXL1001 and PXL 1002
  31.  *                     (use: raster graphics)
  32.  *            +reduction of the produced code
  33.  *            +new options -X -Y -c -g
  34.  *            +changed options -r (LJ now default from first to last)
  35.  *                     -x,-y  (accept floats)
  36.  *            +new option -z for LJ: print testpage containing
  37.  *                     pagecounter after printjob
  38.  *            +try to overcome font limit on LJ (max 16 fonts/page) and
  39.  *             (max 32 fonts/document):
  40.  *                     additional fonts are drawn as bitmap-
  41.  *                     graphics.
  42.  *            +allows to set character close to the paperedge on LJ
  43.  *            +gf-supprt (by Joe Kelsey joe@Pacer.com)
  44.  *                gf.c and gf.h from mitdevices/dvi2ps
  45.  *            +clipping of rules
  46.  *            +OS/2 defines from Rutger Berns, apprmb@hheouh50.bitnet
  47.  *
  48.  *            BITNET/EARN:       NEUMANN at AWIWUW11
  49.  **********************************************************************
  50.  * fixes in LJ-mode:  rule-drawing,
  51.  *            characters with 127<=height<=200
  52.  *            reset printer at beginning and end of each job
  53.  *            better positioning of rules
  54.  * 30.1.89 (0.48) bug fixed for files containing >32 fonts (thanks A. Brosig),
  55.  *                different font assignment heuristic
  56.  * fixes in 3812-mode:  14.juli 87  positioning of rastered characters
  57.  *            better positioning of rules
  58.  * general fixes
  59.  * 1.1.88         page origin set to 1in/1in (hopefully everywhere)
  60.  * 22.7.88        reset y-position for each page-eject
  61.  * 15.1.89        fixing bug is space allocation for EmitFileName
  62.  *                (thanks to Bernhard Simon)
  63.  * 15.3.91 (0.49) landscape support for lj ii p, lj iii and lj 2000 
  64.  *                fixing rule drawing problems for IBM3812 in landcape mode,
  65.  *                256 character clean (lj family and IBM3812) 
  66.  * 5.5.91 (0.50)  -DSEVENBIT added for older LJ-emulations
  67.  *                -D1, -D2, -D-, -D1-, -D2- options added due to suggestions 
  68.  *                from Tomasz Wolniewicz
  69.  **********************************************************************
  70.  * Preprocessor switches:
  71.  *      #define DEBUG    for massive printing of trace information
  72.  *               when -d cmdline option specified
  73.  *      #define IBM3812  produce output for the IBM3812 pageprinter
  74.  *      #define LJ       produce output for the HP Laserjet+ or LJ II
  75.  *      #define LJ2P     produce output for the HP Laserjet LJ IIP, LJ III
  76.  *                       or LaserJet 2000
  77.  *      #define LJ_LARGE_FONT_MEMORY  large FONT Memory for LJ printer family
  78.  *      #define DRAWGLYPH draws PK-Glyphs on stderr
  79.  *      #define USEPXL   use PXL and PK fonts rather than gf fonts
  80.  */
  81. /**********************************************************************
  82.  ************************  Global Definitions  ************************
  83.  **********************************************************************/
  84. /* #define IBM3812 */
  85. /* #define LJ */
  86. /* #define DRAWGLYPH */
  87.  
  88. #include "config.h"
  89.  
  90. #ifdef unix
  91. #define OS "Unix"
  92. #define READ_BINARY     "r"
  93. #define WRITE_BINARY    "w"
  94. #define labs(x) abs(x)
  95. #endif
  96. #ifdef MSDOS
  97. #define OS "MS-DOS"
  98. #define READ_BINARY     "rb"
  99. #define WRITE_BINARY    "wb"
  100. #define MSC5
  101. #endif
  102. #ifdef OS2
  103. #define OS "OS/2"
  104. #define READ_BINARY     "rb"
  105. #define WRITE_BINARY    "wb"
  106. #define MSC5
  107. #endif
  108. #ifdef vms
  109. #define OS "VMS"
  110. #include <ssdef.h>
  111. #include <stsdef.h>
  112. #define ftell vms_ftell             /* use some external routines, because */
  113. #define fseek vms_fseek             /* of some bugs in the VMS run time    */
  114. #define getchar vms_getchar         /* library */
  115. #define getenv vms_getenv
  116. #define ungetc vms_ungetc
  117. #define getname vms_getname
  118. #define READ_BINARY     "rb"
  119. #define WRITE_BINARY    "wb","rfm=fix","bls=512","mrs=512" /* fixed records */
  120. #define labs(x) abs(x)
  121. #endif
  122.  
  123. #include "commands.h"
  124. #include <string.h>
  125. #include <signal.h>
  126. #include <stdio.h>
  127. #include <ctype.h>
  128. #ifdef vms
  129. #include <file.h>
  130. #else
  131. #include <fcntl.h>
  132. #endif
  133. #ifdef MSDOS
  134. #include <dos.h>     /* only for binaryopen on device  */
  135. #endif
  136. #ifdef  unix
  137. #include <limits.h>
  138. #endif
  139.  
  140. #define  DVIFORMAT    2
  141. #define  UNKNOWN     -1
  142. #define  FIRSTFNTCHAR     0
  143.  
  144. #ifdef MSDOS
  145. #define OPEN_MAX 30    /* better than 50  */
  146. #endif
  147.  
  148. #ifdef   OPEN_MAX                    /* ... in a friendly unix system  */
  149. #ifndef vms
  150. #define  MAXOPEN    (OPEN_MAX - 8)
  151. #else
  152. #define  MAXOPEN          12     /* OPEN_MAX seems to be 8 on VMS systems */
  153. #endif
  154. #else
  155. #define  MAXOPEN          24     /* limit on number of open font files */
  156. #endif
  157. #define  NFNTCHARS       LASTFNTCHAR+1
  158. #define  STACK_SIZE      100     /* DVI-stack size                     */
  159. #define  NONEXISTANT     -1      /* offset for PXL files not found     */
  160. #define  NO_FILE        ((FILE *)-1)
  161. #define  NEW(A) ((A *)  malloc(sizeof(A)))
  162. #define  EQ(a,b)        (strcmp(a,b)==0)
  163. #define  MM_TO_PXL(x)   (int)(((x)*RESOLUTION*10)/254)
  164. #define  PT_TO_PXL(x)   (int)((long)((x)*RESOLUTION*100l)/7224)
  165. #define  PT_TO_DVI(x)   (long)((x)*65536l)
  166. #define  BOPENCMD fopen
  167. #define  BINOPEN(f) BOPENCMD(f,READ_BINARY)
  168. /* SMALL_SIZE characters are loaded into font storage of the printer   */
  169. /* LARGE_SIZE characters are rastered                                  */
  170. /* HUGE_SIZE characters are not loaded into the memory of the host     */
  171. #define  SMALL_SIZE (unsigned char) 0
  172. #define  LARGE_SIZE (unsigned char) 1
  173. #define  HUGE_SIZE  (unsigned char) 2
  174. #define  HUGE_CHAR_PATTERN 32767l
  175. #define  BYTES_PER_PIXEL_LINE 500    /* max number of bytes per pixel line */
  176.  
  177.  
  178. #define PK_POST 245
  179. #define PK_PRE 247
  180. #define PK_ID 89
  181.  
  182. /* to speedup the program a little: redefinition of PixRound and PutWord */
  183. /*#define PIXROUND(x,c) ((((double)x+(double)(c>>1))/(double)c)+0.5)*/
  184. #define PIXROUND(x,c) (((x)+c)/c)
  185. #define PUTWORD(w)  EMITC((char)(w>>8)&0xff); EMITC((char)w&0xff)
  186. /*************************************************************************/
  187. #define  EMIT            fprintf              /* output a formatted string   */
  188. #ifndef vms
  189. #define  EMITB(len,b)   fwrite(b,1,len,outfp)  /* output binary data of len  */
  190. #else
  191.     /* VMS doesn't like to use fwrite on a file with fixed record sizes,
  192.        so use number of putc calls */
  193. #define  EMITB(len,b)   for (kk = 0;kk < len; kk++) putc(*(b+kk),outfp);
  194. #endif
  195. #define  EMITWORD(w)    PUTWORD((w))         /* output a 2 byte word of data */
  196.  
  197. #define  MoveOver(b)  h += (long) b
  198. #define  MoveDown(a)  v += (long) a
  199. #define  qfprintf if (!G_quiet) fprintf
  200. #define  qprintf  if (!G_quiet) printf
  201. #define  LARGER(a,b) (((a)>(b)) ? (a) : (b))
  202.  
  203. #ifdef IBM3812
  204. #define  PRINTER      "IBM 3812 pageprinter"
  205. #define  EMITC(c)      PMPoutC(c)               /* output a single character */
  206. #define  PMPcont(l)    PMPout(-1,(long)l)         /* next l bytes continuous */
  207. #define  PMPflush      PMPout(0l,"")                     /* flush PMP-buffer */
  208. #define  EMITL(l,d)    PMPout((int)l,d)      /* EMIT-logical: via PMP-buffer */
  209. #define  hconvRESOLUTION   240
  210. #define  vconvRESOLUTION   240
  211. #define  CHAR_WIDTH_LARGE  100       /*  limit for loading into printer font */
  212. #define  CHAR_HEIGTH_LARGE 127       /*  limit for loading into printer font */
  213. #define  OUTBUFSIZE     20000        /*   size of output buffer for PMP cmds */
  214.                       /*   has to be less max(signed int)     */
  215. #define  MAXFONTSTORAGE      130000l /* font storage in the 3812 pageprinter */
  216. #define  EMITFILE_EXTENSION    ".pmp"      /* default extension of emit file */
  217. #define  XDEFAULTOFF    RESOLUTION        /* y default offset on page 1 inch */
  218. #define  YDEFAULTOFF    RESOLUTION        /* y default offset on page 1 inch */
  219. #define  CHARSTRINGMAX  80                /* bufferlength for SetString      */
  220. #define  MAX_PAGE_WIDTH  2040
  221. #define  MAX_PAGE_HEIGHT 3360
  222. /**********************************************************************/
  223. /**************  Positioning for the 3812  ****************************/
  224. /**********************************************************************/
  225. #define VERT_HALF(n) ((short)((n+1)>>1)-1)
  226. #define HOR_HALF(n)  ((short)(n>>1))
  227. #define MoveHor(n)  if ((n)!=0) { PMPcont(3); PMPout(1,"\342"); EMITWORD((n)); }
  228. #define MoveVert(n) if ((n)!=0) { PMPcont(3); PMPout(1,"\343"); EMITWORD((n)); }
  229. #endif
  230.  
  231. #ifdef LJ
  232. #ifdef LJ2P
  233. #define  PRINTER       "HP LaserJet IIP"
  234. #else
  235. #ifdef LJ2 
  236. #define  PRINTER       "HP LaserJet II"
  237. #else
  238. #define  PRINTER       "HP LaserJet"
  239. #endif
  240. #endif
  241. #ifdef LJ4
  242. #define  RESOLUTION    600
  243. #define  hconvRESOLUTION   600
  244. #define  vconvRESOLUTION   600
  245. #else
  246. #define  RESOLUTION    300
  247. #define  hconvRESOLUTION   300
  248. #define  vconvRESOLUTION   300
  249. #endif
  250. #ifdef LJ2
  251. /* the printer limit of the LJ2P is actually 16384x16384, 
  252.   * but to exploit it, one would need lots of memory in the printer
  253.  */
  254. #define  CHAR_WIDTH_LARGE  300     /* limit for loading into printer font */
  255. #define  CHAR_HEIGTH_LARGE 300     /* y_offset reaches the same size! */
  256. #else   /* such as LaserJet+, Laserjet II */
  257. #define  CHAR_WIDTH_LARGE  100       /* limit for loading into printer font */
  258. #define  CHAR_HEIGTH_LARGE 127           /* y_offset reaches the same size! */
  259. #endif
  260. #define  EMITFILE_EXTENSION    ".lj"      /* default extension of emit file */
  261. #ifndef MAX_FONTS_PER_PAGE
  262. #define  MAX_FONTS_PER_PAGE 16          /* maximum number of fonts per page */
  263. #endif
  264. #define  HANDLE_MAX_FONTS  255      /* max nr of fonts handled (rasterfont) */
  265. #define  FONTS_DOWNLOADABLE 32    /* max nr of fonts that can be downloaded */
  266. #define  MAXFONTSTORAGE (395l*1024l)                /* standard user memory */
  267. #define  EMITC(c)       putc(c,outfp)          /* output a single character */
  268. #define  EMITL(l,d)     EMITB(l,d)                  /* EMIT-logical = EMITB */
  269. #define  XDEFAULTOFF    RESOLUTION-54 /*x default offset on page 1 inch (LJ2)*/
  270. #define  YDEFAULTOFF    RESOLUTION+9    /* y default offset on page 1 inch */
  271. #define  max(x,y)       if ((y)>(x)) x = y
  272. #ifndef vms
  273. #define  INT_ASCII(b,i) if (i == 0) b[0] = '\0'; else sprintf((char *)b,"%hd",i)
  274. #else
  275. #define  INT_ASCII(b,i) if (i == 0) b[0] = '\0'; else sprintf((char *)b,"%d",i)
  276. #endif
  277. #endif
  278.  
  279. #ifdef SEVENBIT
  280. #define VIS   33
  281. #define VIS2  (VIS+32)
  282. unsigned char
  283. VisChar(c)
  284. unsigned char   c;
  285. {
  286.     c &= 0xff;
  287.     if (c < VIS)
  288.         return ((unsigned char)(160 + c));
  289.     if (c < 128)
  290.         return (c);
  291.     if (c < (255 - VIS2))
  292.         return ((unsigned char)(VIS2 + c));
  293.     return (255);
  294. }
  295. #else
  296. #define VisChar(c) (unsigned char)(c)
  297. #endif
  298.  
  299.  
  300. /**********************************************************************/
  301. /***********************  external definitions  ***********************/
  302. /**********************************************************************/
  303. /*typedef  char    bool;*/
  304.  
  305. #ifndef unix
  306. long    access();
  307. FILE   *BOPENCMD();
  308. void    exit();
  309. int     fclose();
  310. int     fprintf();
  311. int     fseek();
  312. char   *index();
  313. int     printf();
  314. int     sscanf();
  315. int     strcmp();
  316. char   *strcpy();
  317. #ifdef MSC5
  318. unsigned int    strlen();
  319. #endif
  320. void    free();
  321. void    setbuf();
  322. #endif
  323. #ifndef MSDOS
  324. char   *malloc();
  325. char   *getenv();
  326. #endif
  327.  
  328. #ifdef MSDOS
  329. int     intdos();
  330. #endif
  331.  
  332. #ifndef USEPXL
  333. /* interface to gf.c */
  334. extern FILE *gfin;
  335. extern int checksum;
  336. extern long tfm_wd[], char_pointer[];
  337. extern char char_exists[];
  338. extern int num_cols, num_rows, num_bytes, x_offset, y_offset;
  339. extern unsigned char bits[];
  340. extern int gf_font_max_m, gf_font_max_n, gf_font_min_n;
  341. extern int gettochar();
  342. extern void readbits();
  343. extern void readpost();
  344. extern void seekpost();
  345. extern int seekchar();
  346. #endif
  347.  
  348.  
  349. /**********************************************************************/
  350. /*************************  Global Procedures  ************************/
  351. /**********************************************************************/
  352. /* Note: Global procedures are declared here in alphabetical order, with
  353.    those which do not return values typed "void".  Their bodies occur in
  354.    alphabetical order following the main() procedure.  The names are
  355.    kept unique in the first 6 characters for portability. */
  356. double  ActualFactor();
  357. void    AllDone();
  358. #ifdef  MSDOS
  359. void    AssureBinary();  /* DOS and Microsoft C dependent !!! */
  360. #endif
  361. void    CopyFile();
  362. void    CopyHPFile();
  363. void    DecodeArgs();
  364. void    DoBop();
  365. long    DoConv();
  366. void    DoSpecial();
  367. void    EmitChar();
  368. void    Fatal();
  369. void    FindPostAmblePtr();
  370. void    FormFeed();
  371. void    GetBytes();
  372. void    GetFontDef();
  373. char    *GetKeyStr();
  374. bool    GetKeyVal();
  375. bool    IsSame();
  376. void    lcase();
  377. void    LoadAChar();
  378. long    NoSignExtend();
  379. /* see cautionary note in code, re arithmetic vs logical shifts */
  380. void    OpenFontFile();
  381. long    PixRound();
  382. void    PkRaster();
  383. void    PutWord();
  384. void    RasterLine();
  385. void    RasterChar();
  386. void    ReadFontDef();
  387. void    ReadPostAmble();
  388. void    SetChar();
  389. void    SetFntNum();
  390. void    SetPosn();
  391. void    SetRule();
  392. void    SetString();
  393. long    SignExtend();
  394. /* see cautionary note in code, re arithmetic vs logical shifts */
  395. void    SkipFontDef();
  396. void    Warning();
  397. unsigned char   skip_specials() ;
  398.  
  399. #ifdef IBM3812
  400. void    PMPout();
  401. void    PMPoutC();
  402. #endif
  403.  
  404. /**********************************************************************/
  405. /***********************  Font Data Structures  ***********************/
  406. /**********************************************************************/
  407.  
  408. struct char_entry {             /* character entry */
  409. #ifdef USEPXL
  410.     unsigned short  width, height;      /* width and height in pixels */
  411.     short   xOffset, yOffset, yyOffset; /* x offset and y offset in pixels*/
  412. #endif
  413.     struct {
  414.         bool isloaded;
  415.         union {
  416.             long    fileOffset;
  417.             long    *pixptr;
  418.         } address;
  419.     } where;
  420.     long    tfmw;             /* TFM width                 */
  421.     long    cw;               /* character width in pixels */
  422.     unsigned char   flag_byte;          /* for PK-files    */
  423.     unsigned char   charsize;
  424. };
  425. struct font_entry {    /* font entry */
  426.     long    k, c, s, d;
  427.     int     a, l;
  428.     char n[STRSIZE];          /* FNT_DEF command parameters           */
  429.     long    font_mag;         /* computed from FNT_DEF s and d parameters */
  430.     /*char psname[STRSIZE];*/ /* PostScript name of the font          */
  431.     char    name[STRSIZE];    /* full name of PXL file                */
  432.     FILE * font_file_id;      /* file identifier (NO_FILE if none)    */
  433. #ifdef USEPXL
  434.     long    magnification;    /* magnification read from PXL file     */
  435.     long    designsize;       /* design size read from PXL file       */
  436. #endif
  437.     struct char_entry ch[NFNTCHARS];   /* character information       */
  438.     struct font_entry *next;
  439.     unsigned short ncdl;      /* #of different chars actually downloaded */
  440.     unsigned short plusid;    /* Font id in Printer                    */
  441.     bool used_on_this_page;
  442.     enum PxlId {
  443.         id1001, id1002, pk89    } id;
  444. #ifdef LJ
  445.     unsigned short max_width, max_height, max_yoff;
  446. #endif
  447. };
  448.  
  449.  
  450. struct pixel_list {
  451.     FILE *pixel_file_id;    /* file identifier  */
  452.     int     use_count;      /* count of "opens" */
  453. };
  454. /**********************************************************************/
  455. /*************************  Global Variables  *************************/
  456. /**********************************************************************/
  457. long    FirstPage  = -1000000;  /* first page to print (uses count0)   */
  458. long    LastPage   = 1000000;   /* last page to print                  */
  459. long    PrintPages = 1000000;   /* nr of pages to print                */
  460. bool    FirstPageSpecified = FALSE;
  461. bool    LastPageSpecified = FALSE;
  462. char    G_progname[STRSIZE];    /* program name                        */
  463. char    filename[STRSIZE];      /* DVI file name                       */
  464. char    rootname[STRSIZE];      /* DVI filename without extension      */
  465. char    *PXLpath = FONTAREA;    /* PXL path name for search            */
  466. char    *HeaderFileName = "";   /* file name & path of Headerfile      */
  467. char    *EmitFileName = "";     /* file name & path for output         */
  468. #ifdef IBM3812
  469. bool    FirstAlternate = FALSE; /* first page from alternate casette ? */
  470. #endif
  471. bool    Reverse = FALSE;        /* process DVI pages in reverse order? */
  472. bool    Landscape = FALSE;      /* print document in ladscape mode     */
  473. bool    ResetPrinter = TRUE;    /* reset printer at the begin of the job*/
  474. bool    DoublePage = FALSE;     /* print on both sides of a paper      */
  475. bool    PrintSecondPart = TRUE; /* print First Part when DoublePage    */
  476. bool    PrintFirstPart = TRUE;  /* print Second Part when DoublePage   */
  477. bool    PrintEmptyPages = TRUE; /* print Empty pages in DoublePage mode*/
  478. short   PageParity = 1;
  479. #ifdef LJ
  480. #ifdef LJ2P
  481. int    DuplexMode = 0;
  482. #endif
  483. bool    PrintTestPage = FALSE;  /* print testpage with pagecounter after job */
  484. unsigned short pagesize = 0;    /* page size value                      */
  485. unsigned short pgsiz_dots = 0;  /* page size in dots (for rule-clipping)*/
  486. #endif
  487. #ifndef vms
  488. short   G_errenc = 0;           /* has an error been encountered?      */
  489. #else
  490. long    G_errenc = SS$_NORMAL;  /* has an error been encountered?      */
  491. #endif
  492. bool    G_header = FALSE;       /* copy header file to output?         */
  493. bool    G_quiet = FALSE;        /* for quiet operation                 */
  494. bool    G_noverbatim = TRUE;    /* inform user about pxl-files used    */
  495. bool    G_nowarn = FALSE;       /* don't print out warnings            */
  496. short   x_origin = XDEFAULTOFF; /* x-origin in dots                    */
  497. short   y_origin = YDEFAULTOFF; /* y-origin in dots                    */
  498. short   x_goffset;              /* global x-offset in dots             */
  499. short   y_goffset;              /* global y-offset in dots             */
  500. unsigned short ncopies = 1;     /* number of copies to print           */
  501. long    hconv, vconv;           /* converts DVI units to pixels        */
  502. long    den;                    /* denominator specified in preamble   */
  503. long    num;                    /* numerator specified in preamble     */
  504. long    h;                      /* current horizontal position         */
  505. long    hh = 0;                 /* current h on device                 */
  506. long    v;                      /* current vertical position           */
  507. long    vv = 0;                 /* current v on device                 */
  508. long    mag;                    /* magnification specified in preamble */
  509. long    usermag = 0;            /* user specified magnification        */
  510. int     ndone = 0;              /* number of pages converted           */
  511. int     nopen = 0;              /* number of open PXL files            */
  512. #ifdef vms
  513. int     kk;                     /* loop variable for EMITB             */
  514. #endif
  515. FILE  *outfp = NULL;            /* output file                         */
  516. FILE  *pxlfp;                   /* PXL file pointer                    */
  517. FILE  *dvifp  = NULL;           /* DVI file pointer                    */
  518. struct font_entry *prevfont = NULL; /* font_entry pointer previous font*/
  519. struct font_entry *fontptr;     /* font_entry pointer                  */
  520. struct font_entry *hfontptr = NULL; /* font_entry pointer              */
  521. struct font_entry *pfontptr = NULL; /* previous font_entry pointer     */
  522. struct pixel_list pixel_files[MAXOPEN+1]; /* list of open PXL files    */
  523. long    postambleptr;           /* Pointer to the postamble            */
  524. long    ppagep;                 /* previous page pointer               */
  525. static int      last_ry = UNKNOWN;      /* last y-position on page     */
  526. static int      last_rx = UNKNOWN;      /* last x-position on page     */
  527. long   StartPrintPages;         /* notpad for double paged output      */
  528. int    WouldPrint    = 0;
  529. bool   ZeroPage = FALSE;        /* Document starts with a Zero Page    */
  530. bool   EvenPage = FALSE;        /* Document starts with an even Page   */
  531. long   LastPtobePrinted = 0;
  532. int    G_ncdl = 0;
  533.  
  534. long    allocated_storage = 0; /* size of mallocated storage (statistics) */
  535. long    power[32] ;
  536. long    gpower[33] ;
  537.  
  538.  
  539. #ifdef DEBUG
  540. bool Debug = FALSE;
  541. #endif
  542.  
  543. #ifdef LJ
  544. int     fonts_used_on_this_page = MAX_FONTS_PER_PAGE+1;
  545. char    rasterfont[HANDLE_MAX_FONTS];
  546.     /* raster if fonts/page>MAX_FONTS_PER_PAGE*/
  547. #endif
  548.  
  549. long    used_fontstorage = 0;
  550.  
  551. #ifdef IBM3812
  552. char    PMPformat[20];
  553. char    CharString[CHARSTRINGMAX];
  554. unsigned int CharStringPos = 0;
  555. #define CharStringOut \
  556.     if (CharStringPos>0) { \
  557.         PMPcont(CharStringPos+1);\
  558.         PMPoutC((unsigned char)CharStringPos);\
  559.         PMPout(CharStringPos, CharString); \
  560.         CharStringPos=0; }
  561. #endif
  562.  
  563. #ifdef TIMING
  564. /************************timing stuff*********************/
  565. #ifndef vms
  566. #include <sys/timeb.h>
  567. #else
  568. #include <timeb.h>
  569. #endif
  570. struct timeb timebuffer;
  571. double  start_time;
  572. #endif
  573.  
  574.  
  575.  
  576.  
  577. /**********************************************************************/
  578. /*******************************  main  *******************************/
  579. /**********************************************************************/
  580. void
  581. main(argc, argv)
  582. int     argc;
  583. char    *argv[];
  584. {
  585.     struct stack_entry {  /* stack entry */
  586.         long    h, v, w, x, y, z;  /* what's on stack */
  587.     };
  588.     short   command;          /* current command                         */
  589.     long    count[10];        /* the 10 counters at begining of each page*/
  590.     long    cpagep;           /* current page pointer                    */
  591.     bool Emitting = FALSE;    /* outputting typsetting instructions?     */
  592.     int     i;                /* command parameter; loop index           */
  593.     int     k;                /* temporary parameter                     */
  594.     char    n[STRSIZE];       /* command parameter                       */
  595.     int     PassNo = 0;       /* which pass over the DVI page are we on? */
  596.     bool SkipMode = FALSE;    /* in skip mode flag                       */
  597.     int     sp;               /* stack pointer                           */
  598.     struct stack_entry stack[STACK_SIZE];  /* stack                      */
  599.     char    SpecialStr[STRSIZE]; /* "\special" strings                   */
  600.     long    val, val2;        /* temporarys to hold command information  */
  601.     long    w;                /* current horizontal spacing              */
  602.     long    x;                /* current horizontal spacing              */
  603.     long    y;                /* current vertical spacing                */
  604.     long    z;                /* current vertical spacing                */
  605.  
  606.  
  607. #ifdef vms
  608.     extern noshare int errno;
  609.     extern noshare char *sys_errlist[];
  610. #else
  611.     extern  char *sys_errlist[];
  612.     extern  int     errno;
  613. #endif
  614.  
  615.     setbuf(stderr, NULL);
  616.     (void) strcpy(G_progname, argv[0]);
  617.     DecodeArgs( argc, argv );
  618.  
  619.     power [ 0 ] = 1 ;
  620.     for ( i = 1 ; i <= 31 ; i ++)
  621.         power [ i ] = power [ i - 1 ] << 1 ;
  622.     gpower[0] = 0l ;
  623.     for ( i = 1 ; i <= 32 ; i ++)
  624.         gpower[i] = gpower[i - 1] + power[i - 1] ;
  625.  
  626.     if ((i = (int) NoSignExtend(dvifp, 1)) != PRE)  {
  627.         Fatal(
  628.         "%s: PRE doesn't occur first--are you sure this is a DVI file?\n\n",
  629.                 G_progname);
  630.     }
  631.     i = (int) SignExtend(dvifp, 1);
  632.     if (i != DVIFORMAT)  {
  633.         Fatal( "%s: DVI format = %d, can only process DVI format %d files\n\n",
  634.                 G_progname, i, DVIFORMAT);
  635.     }
  636.  
  637.     if (*EmitFileName == '-')
  638.         outfp = stdout;
  639.     else
  640.         if ((outfp = fopen(EmitFileName, WRITE_BINARY)) == NULL)
  641.         Fatal("opening output file: fopen(%s) : %s",
  642.             EmitFileName,sys_errlist[errno]);
  643.  
  644. #ifdef MSDOS
  645.     AssureBinary(outfp);
  646. #endif
  647.  
  648. #ifdef TIMING
  649.     ftime(&timebuffer);
  650.     start_time = (timebuffer.time) + (float)(timebuffer.millitm) / 1000.0;
  651. #endif
  652.  
  653.     /* it is important that these be the very first things output !!! */
  654.     if ( G_header )
  655.         CopyFile( HeaderFileName );
  656.  
  657.     /*****************************/
  658.     /*for( i0=0; i0<nif; i0++ )  */    /* copy all included files */
  659.     /*    CopyFile( Ifile[i0] ); */
  660.     /*****************************/
  661.  
  662. #ifdef IBM3812
  663.     PMPout(3, "\307\310\366");          /* unload all fonts and macros */
  664.     EMITWORD(MAX_PAGE_WIDTH);
  665.     EMITWORD(MAX_PAGE_HEIGHT);
  666.     if (Landscape)
  667.         PMPout(2, "\322\1");
  668. #endif
  669. #ifdef LJ
  670.     if (ResetPrinter)
  671.         EMIT(outfp, "\033E");
  672. #ifdef LJ4
  673.       EMIT(outfp, "\033%%-12345X@PJL SET RESOLUTION=600\012");
  674.       EMIT(outfp, "@PJL SET PAGEPROTECT=OFF\012");
  675.       EMIT(outfp, "@PJL SET ENTER LANGUAGE=PCL\012");
  676.       EMIT(outfp, "\033&u600D\033*t600R");
  677. #endif
  678. #ifdef LJ2P
  679.     if (DuplexMode) 
  680.         EMIT(outfp, "\033&l%dH",DuplexMode);
  681. #endif
  682.     if (Landscape)
  683.         EMIT(outfp, "\033&l1O\033*rF");
  684.    if (pagesize>0)
  685. #ifndef vms
  686.         EMIT(outfp, "\033&l%hdaE\033&aL",pagesize);
  687. #else
  688.         EMIT(outfp, "\033&l%daE\033&aL",pagesize);
  689. #endif
  690.     else
  691.         EMIT(outfp, "\033&lE\033&aL");
  692.  
  693.     if (ncopies>1)
  694. #ifndef vms
  695.         EMIT(outfp, "\033&l%hdX",ncopies);
  696. #else
  697.         EMIT(outfp, "\033&l%dX",ncopies);
  698. #endif
  699. #endif
  700.     if (DoublePage) {
  701.          StartPrintPages = PrintPages;
  702. #ifdef IBM3812
  703.          Reverse = (bool)!Reverse; /* perverse and strange */
  704. #endif
  705.  
  706.     }
  707.     if (Reverse) {
  708. #ifdef DEBUG
  709.         if (Debug)
  710.               fprintf(stderr, "reverse\n");
  711. #endif
  712.         ReadPostAmble(TRUE);
  713.         fseek(dvifp, ppagep, 0);
  714.     } else {
  715.         ReadPostAmble(TRUE);
  716.         fseek(dvifp,  14l, 0);
  717.         k = (int) NoSignExtend(dvifp, 1);
  718.         GetBytes(dvifp, n, k);
  719.     }
  720.     PassNo = 0;
  721.  
  722.     while (TRUE)  {
  723.         command = (short) NoSignExtend(dvifp, 1)   ;
  724. #ifdef DEBUG
  725.         if (Debug)
  726.                fprintf(stderr,"CMD:\t%d\n", command);
  727. #endif
  728.         switch (command)  {
  729.         case SET1:
  730.         case SET2:
  731.         case SET3:
  732.         case SET4:
  733.             val = NoSignExtend(dvifp, (int) command - SET1 + 1);
  734.             if (!SkipMode)
  735.                 SetChar(val, command, PassNo, TRUE,FALSE);
  736.             break;
  737.         case SET_RULE:
  738.             val = NoSignExtend(dvifp, 4);
  739.             val2 = NoSignExtend(dvifp, 4);
  740.             if (Emitting)
  741.                 SetRule(val, val2, 1);
  742.             break;
  743.         case PUT1:
  744.         case PUT2:
  745.         case PUT3:
  746.         case PUT4:
  747.             val = NoSignExtend(dvifp, (int) command - PUT1 + 1);
  748.             if (!SkipMode)
  749.                 SetChar(val, command, PassNo, TRUE,FALSE);
  750.             break;
  751.         case PUT_RULE:
  752.             val = NoSignExtend(dvifp, 4);
  753.             val2 = NoSignExtend(dvifp, 4);
  754.             if (Emitting)
  755.                 SetRule(val, val2, 0);
  756.             break;
  757.         case NOP:
  758.             break;
  759.         case BOP:
  760.             cpagep = ftell(dvifp) - 1;
  761.             for (i = 0; i <= 9; i++)
  762.                 count[i] = NoSignExtend(dvifp, 4);
  763.             ppagep = NoSignExtend(dvifp, 4);
  764.             h = v = w = x = y = z = 0;
  765.             hh = vv = 0;
  766.             sp = 0;
  767.             fontptr = NULL;
  768.             prevfont = NULL;
  769.             DoBop();
  770. /*
  771. fprintf(stderr,"skimode %d, count %d, F %d, L %d\n",
  772.         (int)SkipMode,(int)count[0],(int)FirstPageSpecified,(int)LastPageSpecified);
  773. */
  774.             SkipMode = (bool) ((FirstPageSpecified && count[0] < FirstPage) || 
  775.                                               (LastPageSpecified && count[0] > LastPage ));
  776. /*
  777. fprintf(stderr,"skimode %d, count %d, F %d, L %d\n",
  778.         (int)SkipMode,(int)count[0],(int)FirstPageSpecified,(int)LastPageSpecified);
  779. */
  780.  
  781.             if (DoublePage && !SkipMode) {
  782.                if (PassNo == 0) {
  783.                   LastPtobePrinted=count[0];
  784.                   if (!Reverse && (WouldPrint == 0)) {
  785.                       if (count[0] == 0l) {
  786.                          ZeroPage = TRUE;
  787.                          EvenPage = FALSE;
  788.                       }
  789.                       else {
  790.                          EvenPage = (bool) ( (count[0]<0? labs(count[0])+1: count[0]) %2 == 0);
  791.  
  792.                          if (PrintEmptyPages && EvenPage && PageParity==1) {
  793.                            WouldPrint ++;
  794.                            if (PrintFirstPart) {
  795.                              qfprintf(stderr,"[EvenPage] ");
  796.                              FormFeed();
  797.                            }
  798.                          }
  799.                       }
  800.                   }
  801.                   WouldPrint ++;
  802. /*
  803.     printf("doublepage %d, page parity = %d, 1=%d 2=%d, Reverse %d, WouldPrint %d, fpZ %d\n",
  804.         (int)DoublePage, (int)PageParity,(int)PrintFirstPart,(int)PrintSecondPart,
  805.         (int)Reverse, (int)WouldPrint, (int)ZeroPage);
  806. */
  807.                 }
  808.                if (!PrintFirstPart && PageParity==1) { 
  809.                  if (count[0]==0l) {
  810.                    ZeroPage = TRUE;
  811.                    EvenPage = FALSE;
  812.                  }
  813.                  SkipMode = TRUE;
  814.                }
  815.                else { 
  816. /*
  817. fprintf(stderr,"FirstPart\n count %d, mod %d, pp %d\n",(int)count[0],(int)count[0]%2,PageParity);
  818. */
  819.                  SkipMode = (bool)(PageParity != (short)(
  820.                                                          (count[0]<0?  labs(count[0])+1: count[0])%2));
  821.                  if (count[0]==0l) SkipMode=(bool)!SkipMode;
  822.                }
  823.  
  824.             }
  825.             Emitting = (bool)((PassNo != 0) && !SkipMode);
  826. /*
  827. fprintf(stderr,"Emitting= %d, PassNo=%d, SkipMode = %d\n",(int)Emitting,(int)PassNo,(int)SkipMode);
  828. */
  829.             if ( !SkipMode ) {
  830.                 if ( PassNo == 0)
  831.                     qfprintf(stderr, "[%ld", count[0]);
  832.             }
  833.             break;
  834.         case EOP:
  835.             if ( !SkipMode ) {
  836.                 if ( PassNo == 0 ) {
  837.                     /* start second pass on current page */
  838.                     fseek(dvifp, cpagep, 0);
  839.                     PassNo = 1;
  840.                 } else {
  841.                    /* end of second pass, and of page processing */
  842.  
  843.                     last_ry = UNKNOWN;
  844.                     FormFeed();
  845.                     ++ndone;
  846.  
  847.                     qfprintf(stderr, "] ");
  848.                     if ( (ndone % 10) == 0 )
  849.                           qfprintf(stderr, "\n");
  850.  
  851.                     if (DoublePage) --PrintPages;
  852.                     if (--PrintPages < 1) AllDone(TRUE);
  853.                     PassNo = 0;
  854.                 }
  855.             } else
  856.                 PassNo = 0;
  857.  
  858.             if ( PassNo == 0 && Reverse ) {
  859.                 if ( ppagep > 0 )
  860.                     fseek(dvifp, ppagep, 0);
  861.                 else {
  862.                    if (DoublePage && !SkipMode)
  863.                      ZeroPage = (bool)(count[0]==0l);
  864.  
  865.                    if (ZeroPage)
  866.                      EvenPage = FALSE;
  867.                    else
  868.                      EvenPage = (bool) ((int)LastPtobePrinted%2 == 0);
  869.  
  870.                    AllDone(FALSE);
  871.                 }
  872.             }
  873.             break;
  874.         case PUSH:
  875.             if (sp >= STACK_SIZE)
  876.                 Fatal("stack overflow");
  877.             stack[sp].h = h;
  878.             stack[sp].v = v;
  879.             stack[sp].w = w;
  880.             stack[sp].x = x;
  881.             stack[sp].y = y;
  882.             stack[sp].z = z;
  883.             sp++;
  884.             break;
  885.         case POP:
  886.             --sp;
  887.             if (sp < 0)
  888.                 Fatal("stack underflow");
  889.             h = stack[sp].h;
  890.             v = stack[sp].v;
  891.             w = stack[sp].w;
  892.             x = stack[sp].x;
  893.             y = stack[sp].y;
  894.             z = stack[sp].z;
  895.             break;
  896.         case RIGHT1:
  897.         case RIGHT2:
  898.         case RIGHT3:
  899.         case RIGHT4:
  900.             val = SignExtend(dvifp, (int) command - RIGHT1 + 1);
  901.             if (Emitting)
  902.                 MoveOver(val);
  903.             break;
  904.         case W0:
  905.             if (Emitting)
  906.                 MoveOver(w);
  907.             break;
  908.         case W1:
  909.         case W2:
  910.         case W3:
  911.         case W4:
  912.             w = SignExtend(dvifp, (int)command - W1 + 1);
  913.             if (Emitting)
  914.                 MoveOver(w);
  915.             break;
  916.         case X0:
  917.             if (Emitting)
  918.                 MoveOver(x);
  919.             break;
  920.         case X1:
  921.         case X2:
  922.         case X3:
  923.         case X4:
  924.             x = SignExtend(dvifp, (int)command - X1 + 1);
  925.             if (Emitting)
  926.                 MoveOver(x);
  927.             break;
  928.         case DOWN1:
  929.         case DOWN2:
  930.         case DOWN3:
  931.         case DOWN4:
  932.             val = SignExtend(dvifp, (int)command - DOWN1 + 1);
  933.             if (Emitting)
  934.                 MoveDown(val);
  935.             break;
  936.         case Y0:
  937.             if (Emitting)
  938.                 MoveDown(y);
  939.             break;
  940.         case Y1:
  941.         case Y2:
  942.         case Y3:
  943.         case Y4:
  944.             y = SignExtend(dvifp, (int)command - Y1 + 1);
  945.             if (Emitting)
  946.                 MoveDown(y);
  947.             break;
  948.         case Z0:
  949.             if (Emitting)
  950.                 MoveDown(z);
  951.             break;
  952.         case Z1:
  953.         case Z2:
  954.         case Z3:
  955.         case Z4:
  956.             z = SignExtend(dvifp, (int)command - Z1 + 1);
  957.             if (Emitting)
  958.                 MoveDown(z);
  959.             break;
  960.         case FNT1:
  961.         case FNT2:
  962.         case FNT3:
  963.         case FNT4:
  964.             if (!SkipMode) {
  965.                 SetFntNum(NoSignExtend(dvifp, (int)command -FNT1 +1),Emitting);
  966.             }
  967.             break;
  968.         case XXX1:
  969.         case XXX2:
  970.         case XXX3:
  971.         case XXX4:
  972.             k = (int) NoSignExtend(dvifp, (int)command - XXX1 + 1);
  973.             GetBytes(dvifp, SpecialStr, k);
  974.             if (Emitting)
  975.                 DoSpecial(SpecialStr, k);
  976.             break;
  977.         case FNT_DEF1:
  978.         case FNT_DEF2:
  979.         case FNT_DEF3:
  980.         case FNT_DEF4:
  981.             k = (int) NoSignExtend(dvifp, (int)command - FNT_DEF1 + 1);
  982.             SkipFontDef();    /* SkipFontDef(k); */
  983.             break;
  984.         case PRE:
  985.             Fatal("PRE occurs within file");
  986.             break;
  987.         case POST:
  988.             AllDone(FALSE);
  989.             PassNo = 0;
  990.             break;
  991.         case POST_POST:
  992.             Fatal("POST_POST with no preceding POST");
  993.             break;
  994.         default:
  995.             if (command >= FONT_00 && command <= FONT_63) {
  996.                 if (!SkipMode)
  997.                     SetFntNum((long) command - FONT_00, Emitting);
  998.             } else if (command >= SETC_000 && command <= SETC_127) {
  999.                 if (!SkipMode) {
  1000.                     SetString(command, PassNo);
  1001.                 }
  1002.             } else
  1003.                 Fatal("%d is an undefined command", command);
  1004.             break;
  1005.         }
  1006.     } /* while TRUE */
  1007. }
  1008.  
  1009.  
  1010. /*-->ActualFactor*/
  1011. /**********************************************************************/
  1012. /**************************  ActualFactor  ****************************/
  1013. /**********************************************************************/
  1014. double  /* compute the actual size factor given the approximation */
  1015. ActualFactor(unmodsize)
  1016. long    unmodsize;                 /* actually factor * 1000 */
  1017. {
  1018.     double  realsize;     /* the actual magnification factor */
  1019.     realsize = (double)unmodsize / 1000.0;
  1020.     if (abs((int)(unmodsize - 1095l))<2)
  1021.         realsize = 1.095445115; /*stephalf*/
  1022.     else if (abs((int)(unmodsize - 1315l))<2)
  1023.         realsize = 1.31453414; /*stepihalf*/
  1024.     else if (abs((int)(unmodsize - 1577l))<2)
  1025.         realsize = 1.57744097; /*stepiihalf*/
  1026.     else if (abs((int)(unmodsize - 1893l))<2)
  1027.         realsize = 1.89292916; /*stepiiihalf*/
  1028.     else if (abs((int)(unmodsize - 2074l))<2)
  1029.         realsize = 2.0736;   /*stepiv*/
  1030.     else if (abs((int)(unmodsize - 2488l))<2)
  1031.         realsize = 2.48832;  /*stepv*/
  1032.     else if (abs((int)(unmodsize - 2986l))<2)
  1033.         realsize = 2.985984; /*stepvi*/
  1034.     /* the remaining magnification steps are represented with sufficient
  1035.        accuracy already */
  1036.     return(realsize);
  1037. }
  1038.  
  1039.  
  1040. /*-->AllDone*/
  1041. /**********************************************************************/
  1042. /****************************** AllDone  ******************************/
  1043. /**********************************************************************/
  1044. void
  1045. AllDone(PFlag)
  1046. bool PFlag;
  1047. {
  1048.     double  time;
  1049.  
  1050.     if (DoublePage && (PageParity==1)) { /* Shall we go around again?*/
  1051.         int k,rc;
  1052.         char    n[STRSIZE];
  1053.  
  1054.         if (PrintEmptyPages && EvenPage && Reverse && PrintFirstPart) {
  1055.             WouldPrint ++;
  1056.             qfprintf(stderr,"[EvenPage] ");
  1057.             FormFeed();
  1058.         }
  1059. #ifdef LJ
  1060.         Reverse = (bool)!Reverse;
  1061. #endif
  1062.         if (Reverse) {
  1063.             if (!PFlag) {
  1064.                fseek (dvifp, postambleptr, 0);
  1065.                (void) NoSignExtend(dvifp, 1);
  1066.                ppagep = NoSignExtend(dvifp, 4);
  1067.             }
  1068.             fseek(dvifp, ppagep, 0);
  1069.         } else {
  1070.             fseek(dvifp,  14l, 0);
  1071.         k = (int) NoSignExtend(dvifp, 1);
  1072.         GetBytes(dvifp, n, k);
  1073.         }
  1074.  
  1075.         if (PrintSecondPart) {
  1076.           if (PrintFirstPart) {
  1077.             qfprintf(stderr,"\n----------------------starting second pass\n");
  1078. #ifdef LJ
  1079.             EMIT(outfp, "\033&l2H"); /* Manual Feed */
  1080. #endif
  1081. #ifdef IBM3812
  1082.             PMPout(6,"\326\001\305\300\326\252");
  1083.             /* set display; ring bell; stop; clear display */
  1084.             PMPflush;
  1085. #endif
  1086.           }
  1087.  
  1088.           if (PrintEmptyPages && Reverse) {
  1089.             if (ZeroPage) WouldPrint++;
  1090.             if ((WouldPrint%2) == 1) {
  1091.               qfprintf(stderr,"[Padding] ");
  1092.               FormFeed();
  1093.             }
  1094.           }
  1095.           WouldPrint = 0;
  1096.           if (PrintEmptyPages && !Reverse && ZeroPage) {
  1097.             WouldPrint++;
  1098.             qfprintf(stderr,"[ZeroPage] ");
  1099.             FormFeed();
  1100.           }
  1101.           PageParity = 0;
  1102.           PrintPages = StartPrintPages;
  1103.           return;
  1104.         }
  1105.     }
  1106.  
  1107.     if (EvenPage && DoublePage && !Reverse) WouldPrint++;
  1108.  
  1109.     if (PrintEmptyPages && DoublePage && PrintSecondPart) {
  1110.         if (Reverse) {
  1111.           if (ZeroPage) {
  1112.             WouldPrint ++;
  1113.             qfprintf(stderr,"[ZeroPage] ");
  1114.             FormFeed();
  1115.           }
  1116.         }
  1117.         else if ((WouldPrint%2) != 0) {
  1118.             qfprintf(stderr,"[Padding] ");
  1119.             FormFeed();
  1120.         }
  1121.     }
  1122.  
  1123. #ifdef IBM3812
  1124.     PMPout(10, "\373\010PMP.init");  /* re-init printer  */
  1125.     PMPflush;
  1126.  
  1127.     if (used_fontstorage > MAXFONTSTORAGE) {
  1128.         Warning("\n\7used font_storage of %s: %ld Bytes (of %ld)\7",
  1129.             PRINTER, used_fontstorage, MAXFONTSTORAGE);
  1130.         Warning("Try to format file in separate runs!");
  1131.     } else
  1132.         qfprintf(stderr,
  1133.            "\nAll done, used font_storage of %s: %ld Bytes (of %ld)",
  1134.              PRINTER, used_fontstorage, MAXFONTSTORAGE);
  1135. #endif
  1136. #ifdef LJ
  1137.     qfprintf(stderr, "\nAll done, used font_storage of %s: %ld Bytes",
  1138.              PRINTER, used_fontstorage);
  1139.     EMIT(outfp, "\033E");
  1140.     EMIT(outfp, "\033%%-12345X");
  1141.     if (PrintTestPage) EMIT(outfp, "\033z");
  1142. #ifdef vms
  1143.     /* last record is not flushed to file, unless it is completely filled */
  1144.     for (kk = (int)((*outfp)->_cnt); kk > 0; --kk) putc('\0',outfp);
  1145.     fflush(outfp);
  1146. #endif
  1147. #endif
  1148.  
  1149.     if (!G_quiet) {
  1150.         fprintf(stderr,"\nDynamically allocated storage: %ld Bytes \n",
  1151.                     allocated_storage);
  1152.         fprintf(stderr,"%d characters downloaded as soft fonts\n", G_ncdl);
  1153.  
  1154. #ifdef TIMING
  1155.         ftime(&timebuffer);
  1156.         time = ((timebuffer.time) + (float)(timebuffer.millitm) / 1000.0) -start_time;
  1157.  
  1158.         if (ndone > 0) {
  1159.             fprintf(stderr,
  1160.            "Time of complete run: %.2f seconds, %d page(s), %.2f seconds/page",
  1161.                       time, ndone, time / ndone);
  1162.             fprintf(stderr," (%.2f ppm)\n",(ndone * 60) / time);
  1163.         }
  1164.         fprintf(stderr,"\n");
  1165. #endif
  1166.     }
  1167.  
  1168.     exit(G_errenc);
  1169. }
  1170.  
  1171.  
  1172. /*-->CopyFile*/   /* copy a file straight through to output */
  1173. /*********************************************************************/
  1174. /***************************** CopyFile ******************************/
  1175. /*********************************************************************/
  1176. void
  1177. CopyFile( str )
  1178. char    *str;
  1179. {
  1180.     FILE    * spfp;
  1181.     char    t;
  1182.     if ( (spfp = BINOPEN(str)) == NULL ) {
  1183.         Warning("Unable to open file %s", str );
  1184.         return;
  1185.     }
  1186.     qfprintf(stderr," [%s", str);
  1187.     for (t = (char)getc(spfp); !feof(spfp); t = (char)getc(spfp))
  1188.         putc(t, outfp);
  1189.     fclose(spfp);
  1190.     qfprintf(stderr,"]");
  1191. }
  1192.  
  1193.  
  1194. /*-->CopyHPFile*/  /* copy a HP file to output removing unwanted control codes*/
  1195. /*********************************************************************/
  1196. /***************************** CopyHPFile ******************************/
  1197. /*********************************************************************/
  1198. void
  1199. CopyHPFile( str )
  1200. char    *str;
  1201. {
  1202.     FILE    * spfp;
  1203.     char    t,numstr[20];
  1204.     int         count,rx,ry,miny,minx,num;
  1205.     
  1206.     if ( (spfp = BINOPEN(str)) == NULL ) {
  1207.         Warning("Unable to open file %s", str );
  1208.         return;
  1209.     }   
  1210.     minx=32767;                 /* Set to a high value initially */
  1211.     miny=32767;
  1212.     
  1213. /* Pass through the input PCL file twice.  The first time find the smallest  */
  1214. /* x- and y-offsets so that they can be subtracted out when sending          */
  1215. /* positioning commands later.   The second pass strips the unwanted commands */
  1216. /* from the input file and outputs the rest */
  1217.     
  1218.     qfprintf(stderr," [%s", str);
  1219.     for (t = (char)getc(spfp); !feof(spfp); t = (char)getc(spfp))
  1220.     {
  1221.       if (t==0x1B)      /* Find the escape character */
  1222.         {
  1223.           t=(char) getc(spfp);
  1224.           if (t==0x2A)  /* This indiactes the start of a graphics command */
  1225.             {                                                                   
  1226.  
  1227.               t=(char) getc(spfp);
  1228.               switch(t)
  1229.                 {
  1230.                 case(0x70):
  1231.                   /* These are the graphics positioning commands */
  1232.                   /* Find the smallest x and y offsets */ 
  1233.                   num=0;
  1234.                   count=0;
  1235.                   for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp))
  1236.                     numstr[count++]=t;
  1237.                   numstr[count]=0;
  1238.                   num= atoi (numstr);
  1239.                   
  1240.                   /* Take into account the possible different ordering */
  1241.                   /* of the commands (x first, y first) */
  1242.                                                 
  1243.                   if ((t==0x59)||(t==0x79))
  1244.                     {
  1245.                       if (numstr[0]!='+'&&numstr[0]!='-'&&numstr[0]!='-')
  1246.                         if (num<miny) miny=num;
  1247.                       if (t==0x79)
  1248.                         {
  1249.                           num=0;
  1250.                           count=0;
  1251.                           for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp))
  1252.                             numstr[count++]=t;
  1253.                           numstr[count]=0;
  1254.                           num=atoi (numstr);
  1255.                           if(numstr[0]!='+'&&numstr[0]!='-'&&numstr[0]!='-')
  1256.                             if (num<minx) minx=num;
  1257.                         }
  1258.                     }
  1259.                   if ((t==0x58)||(t==0x78))
  1260.                     {
  1261.                       if (numstr[0]!='+'&&numstr[0]!='-'&&numstr[0]!='-')
  1262.                         if (num<minx) minx=num;
  1263.                       if (t==0x78)
  1264.                         {
  1265.                           num=0;
  1266.                           count=0;
  1267.                           for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp))
  1268.                             numstr[count++]=t;
  1269.                           numstr[count]=0;
  1270.                           num= atoi (numstr);
  1271.                           if (numstr[0]!='+'&&numstr[0]!='-'&&numstr[0]!='-')
  1272.                             if (num<miny) miny=num;
  1273.                         }
  1274.                     }
  1275.                   break;
  1276.                   /* Ignore all other commands for the moment - just read them */                                                       
  1277.                 case(0x74):     
  1278.                   for (t=(char) getc(spfp);t != 0x52; t=(char) getc(spfp));
  1279.                   break;
  1280.                   
  1281.                 case(0x72):
  1282.                   for (t=(char) getc(spfp);((t< 0x40)||(t>0x60)); t=(char) getc(spfp));
  1283.                   break;
  1284.  
  1285.                 case(0x62):
  1286.                   num=0;
  1287.                   count=0;
  1288.                   /* Read in the correct number of bytes of raster graphics */
  1289.                   /* so that we don't get commands and raster graphics confused */
  1290.                   
  1291.                   for (t=(char) getc(spfp);((t<0x40)||(t>=0x60));t=(char) getc(spfp))
  1292.                     numstr[count++]=t;
  1293.                   numstr[count]=0;
  1294.                   if (t==0x4D)
  1295.                     for(t=numstr[count=0];t!=0;t=numstr[++count]);
  1296.                   if (t==0x57)
  1297.                     {
  1298.                       for(t=numstr[count=0];t!=0;t=numstr[++count]);
  1299.                       for(count= atoi(numstr);count>0;count--)
  1300.                         t=(char) getc(spfp);    
  1301.                     }
  1302.                   break;
  1303.                                                             
  1304.                 case(0x63):
  1305.                   for (t=(char) getc(spfp);((t< 0x40)||(t>0x60)); t=(char) getc(spfp));
  1306.                   break;                                                                                
  1307.                   
  1308.                 default:
  1309.                   break;
  1310.  
  1311.                                 
  1312.                 }
  1313.             }
  1314.         }
  1315.     }
  1316.     fclose(spfp);
  1317.     qfprintf(stderr,"]");
  1318.        
  1319.     if ( (spfp = BINOPEN(str)) == NULL ) {
  1320.       Warning("Unable to open file %s", str );
  1321.       return;
  1322.     }
  1323.     qfprintf(stderr," [%s", str);
  1324.  
  1325. /* Pass through the input file again but this time output the */
  1326. /* retained PCL commands */
  1327.  
  1328.     for (t = (char)getc(spfp); !feof(spfp); t = (char)getc(spfp))
  1329.       {
  1330.         if (t==0x1B)
  1331.           {
  1332.             t=(char) getc(spfp);
  1333.             if (t==0x2A)
  1334.               {                                                                 
  1335.                 t=(char) getc(spfp);
  1336.                 switch(t)
  1337.                   {
  1338.                   case(0x70):
  1339.                     num=0;
  1340.                     count=0;
  1341.                     for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp))
  1342.                       numstr[count++]=t;
  1343.                     numstr[count]=0;
  1344.                     num= atoi (numstr);
  1345.                     if ((t==0x59)||(t==0x79))
  1346.                       {
  1347.                         if (numstr[0]!='+'&&numstr[0]!='-')
  1348.                           {
  1349.                             /* Subtract the minimum offset found in first pass */
  1350.                             /* and add in the current vertical offset */
  1351.                             ry=num-miny+(int)PIXROUND(v,vconv)+y_goffset;       
  1352.                             /* Output the new positioning command */
  1353.                             EMIT(outfp,"\033*p%dY",ry);
  1354.                           }
  1355.                         
  1356.                         else if (num>=0) EMIT(outfp,"\033*p%c%dY",numstr[0],num);
  1357.                         else EMIT(outfp,"\033*p%dY",num);
  1358.                                                                 
  1359.                         if (t==0x79)
  1360.                           {
  1361.                             num=0;
  1362.                             count=0;
  1363.                             for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp)) 
  1364.                               numstr[count++]=t;   /* reconstructed code */
  1365.                             numstr[count]=0;
  1366.                             num=atoi (numstr);
  1367.                             if(numstr[0]!='+'&&numstr[0]!='-')
  1368.                               { 
  1369.                                 /*Add in correct horizontal offset */
  1370.                                 rx=num-minx+(int)PIXROUND(h,hconv)+x_goffset;
  1371.                                 EMIT(outfp,"\033*p%dX",rx);
  1372.                               }
  1373.                             else if (num>=0) EMIT(outfp,"\033*p%c%dX",numstr[0],num);
  1374.                             else EMIT(outfp,"\033*p%dX",num);
  1375.                           }
  1376.                       }
  1377.                                         
  1378.                     if ((t==0x58)||(t==0x78))
  1379.                       {
  1380.                         if(numstr[0]!='+'&&numstr[0]!='-')
  1381.                           {
  1382.                             /*Add in the correct horizontal offset*/
  1383.                             rx=num-minx+(int)PIXROUND(h,hconv)+x_goffset;
  1384.                             EMIT(outfp,"\033*p%dX",rx);
  1385.                           }
  1386.                         else if (num>=0) EMIT(outfp,"\033*p%c%dX",numstr[0],num);
  1387.                         else EMIT(outfp,"\033*p%dX",num);
  1388.                                                                         
  1389.                         if (t==0x78)
  1390.                           {
  1391.                             num=0;
  1392.                             count=0;
  1393.                             for (t=(char) getc(spfp);t<0x40;t=(char) getc(spfp))
  1394.                               numstr[count++]=t;
  1395.                             numstr[count]=0;
  1396.                             num= atoi (numstr);
  1397.                             if(numstr[0]!='+'&&numstr[0]!='-')
  1398.                               {
  1399.                                 /*Add in correct vertical offset*/
  1400.                                 ry=num-miny+(int)PIXROUND(v,vconv)+y_goffset;
  1401.                                 EMIT(outfp,"\033*p%dY",ry);
  1402.                               }
  1403.                             else if (num >=0) EMIT(outfp,"\033*p%c%dY",numstr[0],num);
  1404.                             else EMIT(outfp,"\033*p%dY",num);
  1405.                                                         }
  1406.                       }
  1407.                     break;
  1408.                                                         
  1409.                   case(0x74):
  1410.                     /* Set the Raster resolution */
  1411.                     EMIT(outfp,"\033*t");
  1412.                     for (t=(char) getc(spfp);t != 0x52; t=(char) getc(spfp))
  1413.                       putc(t,outfp);
  1414.                     putc(t,outfp);
  1415.                     break;
  1416.                                                         
  1417.                   case(0x72):
  1418.                     /* Raster Graphics commands such as start */
  1419.                     EMIT(outfp,"\033*r");
  1420.                     for (t=(char) getc(spfp);((t< 0x40)||(t>0x60)); t=(char) getc(spfp))
  1421.                       putc(t,outfp);
  1422.                     putc(t,outfp);
  1423.                     break;
  1424.  
  1425.                   case(0x62):
  1426.                     /* Transfer the correct number of bytes of raster graphics */
  1427.                     EMIT(outfp,"\033*b");
  1428.                     num=0;
  1429.                     count=0;
  1430.                     for (t=(char) getc(spfp);((t<0x40)||(t>=0x60));t=(char) getc(spfp))
  1431.                       numstr[count++]=t;
  1432.                     numstr[count]=0;
  1433.                     if (t==0x4D)
  1434.                       {
  1435.                         for(t=numstr[count=0];t!=0;t=numstr[++count])
  1436.                           putc(t,outfp);
  1437.                         EMIT(outfp,"M");
  1438.                       }
  1439.                     if (t==0x57)
  1440.                       {
  1441.                         for(t=numstr[count=0];t!=0;t=numstr[++count])
  1442.                           putc(t,outfp);
  1443.                         EMIT(outfp,"W");
  1444.                         for(count= atoi(numstr);count>0;count--)
  1445.                           {
  1446.                             t=(char) getc(spfp);
  1447.                             putc(t,outfp);
  1448.                           }     
  1449.                       }
  1450.                     break;
  1451.                                                                 
  1452.                   case(0x63):
  1453.                     /* Rectangular draw commands */
  1454.                     EMIT(outfp,"\033*c");
  1455.                     for (t=(char) getc(spfp);((t< 0x40)||(t>0x60)); t=(char) getc(spfp))
  1456.                       putc(t,outfp);
  1457.                     putc(t,outfp);
  1458.                     break;                                                                              
  1459.                                                                 
  1460.                   default:
  1461.                     break;
  1462.  
  1463.                                 
  1464.                   }
  1465.               }
  1466.           }
  1467.       }
  1468.     fclose(spfp);
  1469.     qfprintf(stderr,"]");
  1470. }
  1471.  
  1472.  
  1473.  
  1474. /*-->DecodeArgs*/
  1475. /*********************************************************************/
  1476. /***************************** DecodeArgs ****************************/
  1477. /*********************************************************************/
  1478. void
  1479. DecodeArgs( argc, argv )
  1480. int     argc;
  1481. char    *argv[];
  1482. {
  1483.     int     argind;            /* argument index for flags      */
  1484.     char    curarea[STRSIZE];  /* current file area             */
  1485.     char    curname[STRSIZE];  /* current file name             */
  1486.     char    *tcp, *tcp1;       /* temporary character pointers  */
  1487.     char    *this_arg;
  1488.     double  x_offset=0.0, y_offset=0.0;
  1489.  
  1490.     if ((tcp = getenv("TEXPXL")) != NULL) PXLpath = tcp;
  1491.  
  1492.     argind = 1;
  1493.     while (argind < argc) {
  1494.         tcp = argv[argind];
  1495.         if (*tcp == '-') {
  1496.             ++tcp;
  1497.             switch (*tcp) {
  1498.             case 'a':       /* a se     default: Jpxl font area */
  1499.                 PXLpath = ++tcp;
  1500.                 break;
  1501. #ifdef IBM3812
  1502.             case 'b':       /* first page from alternate casette */
  1503.                 FirstAlternate = TRUE;
  1504.                 break;
  1505. #endif
  1506.             case 'c':       /* number of copies to print */
  1507.                 if ( sscanf(tcp + 1, "%hd", &ncopies) != 1 )
  1508.                    Fatal("Argument of -c is not a valid integer\n");
  1509.                 if (ncopies<1) {
  1510.                   Warning("argument of -c < 1; set to 1!");
  1511.                   ncopies=1;
  1512.                 }
  1513.                 break;
  1514. #ifdef DEBUG
  1515.             case '-':       /* d selects Debug output */
  1516.                 Debug = TRUE;
  1517.                 break;
  1518. #endif
  1519. #ifdef LJ2P
  1520.             case 'd':       /* d selects DUPLEX mode  */
  1521.                 tcp++;
  1522.                 if (*tcp == '1' ) DuplexMode = 1;
  1523.                 else if (*tcp == '2') DuplexMode = 2;
  1524.                 else {
  1525.                   Warning("Invalid DUPLEX mode, assuming DUPLEX=1, Long-Edge Binding");
  1526.                   DuplexMode = 1;
  1527.                 }
  1528.                 break;
  1529. #endif
  1530.             case 'D':       /* D selects DoublePage  */
  1531.                 DoublePage = TRUE;
  1532.                 tcp++;
  1533.                 if (*tcp == '1' || *tcp == '2') {
  1534.                   if (*tcp == '2') PrintFirstPart = FALSE;
  1535.                   else             PrintSecondPart = FALSE;
  1536.                   tcp++;
  1537.                 }
  1538.                 if (*tcp == '-') PrintEmptyPages = FALSE;
  1539.                 break;
  1540.  
  1541.             case 'e':       /* emit file is specified */
  1542.                 EmitFileName = ++tcp;
  1543. #ifdef MSDOS
  1544.                 /* delete trailing ':' (causing hangup) */
  1545.                 if (EmitFileName[strlen(EmitFileName)-1] == ':')
  1546.                     EmitFileName[strlen(EmitFileName)-1] = '\0';
  1547. #endif
  1548. #ifdef OS2  /* repeated to avoid problems with stupid c preprocessors  */
  1549.                 /* delete trailing ':' (causing hangup) */
  1550.                 if (EmitFileName[strlen(EmitFileName)-1] == ':')
  1551.                     EmitFileName[strlen(EmitFileName)-1] = '\0';
  1552. #endif
  1553.                 break;
  1554.             case 'f':       /* next arg is starting pagenumber */
  1555.                 if ( sscanf(tcp + 1, "%ld", &FirstPage) != 1 )
  1556.                     Fatal("Argument is not a valid integer\n");
  1557.                 FirstPageSpecified = TRUE;
  1558.                 break;
  1559. #ifdef LJ
  1560.             case 'g':       /* do not reset printer (go) */
  1561.                 ResetPrinter = FALSE;
  1562.                 break;
  1563. #endif
  1564.             case 'h':     /* copy header file through to output  */
  1565.                 HeaderFileName = ++tcp;
  1566.                 G_header = TRUE;
  1567.                 break;
  1568. #if defined(LJ2P) || defined(IBM3812)
  1569.             case 'l':       /* landscape  */
  1570.                 Landscape = TRUE;
  1571.                 break;
  1572. #endif
  1573.             case 'x':       /* specify x-offset */
  1574.                 this_arg = 0;
  1575.                 if (!(*++tcp)) {
  1576.                     this_arg = (++argind >= argc ? 0 : argv[argind]);
  1577.                 } else {
  1578.                     this_arg = tcp;
  1579.                 }
  1580.                 if (!this_arg
  1581.                      || sscanf(this_arg,"%lf", &x_offset) != 1)
  1582.          Fatal("Argument of -x is not a valid floating point number\n");
  1583.                 break;
  1584.             case 'y':       /* specify y-offset */
  1585.                 this_arg = 0;
  1586.                 if (!(*++tcp)) {
  1587.                     this_arg = (++argind >= argc ? 0 : argv[argind]);
  1588.                 } else {
  1589.                     this_arg = tcp;
  1590.                 }
  1591.                 if (!this_arg || sscanf(this_arg, "%lf", &y_offset) != 1)
  1592.                 Fatal("Argument of -y is not a valid floating point number\n");
  1593.                 break;
  1594.             case 'X':       /* specify X-origin in dots */
  1595.                 this_arg = 0;
  1596.                 if (!(*++tcp)) {
  1597.                     this_arg = (++argind >= argc ? 0 : argv[argind]);
  1598.                 } else {
  1599.                     this_arg = tcp;
  1600.                 }
  1601.                 if (!this_arg || sscanf(this_arg,"%hd", &x_origin) != 1)
  1602.                    Fatal("Argument of -X is not a valid integer\n");
  1603.                 break;
  1604.             case 'Y':       /* specify Y-origin in dots */
  1605.                 this_arg = 0;
  1606.                 if (!(*++tcp)) {
  1607.                     this_arg = (++argind >= argc ? 0 : argv[argind]);
  1608.                 } else {
  1609.                     this_arg = tcp;
  1610.                 }
  1611.                 if (!this_arg ||
  1612.                      sscanf(this_arg, "%hd", &y_origin) != 1)
  1613.                         Fatal("Argument of -Y is not a valid integer\n");
  1614.                 break;
  1615.             case 'm':       /* specify magnification to use */
  1616.                 switch ( (*++tcp) ) {
  1617.                 case '#':
  1618.                      /* next arg is a magnification to use */
  1619.                     if ( sscanf(tcp + 1, "%ld", &usermag) != 1 )
  1620.                        Fatal("Argument of mag is not a valid integer\n");
  1621.                     break;
  1622.                 case '0':
  1623.                     usermag = 1000;
  1624.                     break;
  1625.                 case 'h':
  1626.                 case 'H':
  1627.                     usermag = 1095;
  1628.                     break;
  1629.                 case '1':
  1630.                     usermag = 1200;
  1631.                     break;
  1632.                 case 'q':
  1633.                     usermag = 1250;
  1634.                     break;
  1635.                 case '2':
  1636.                     usermag = 1440;
  1637.                     break;
  1638.                 case '3':
  1639.                     usermag = 1728;
  1640.                     break;
  1641.                 case '4':
  1642.                     usermag = 2074;
  1643.                     break;
  1644.                 case '5':
  1645.                     usermag = 2488;
  1646.                     break;
  1647.                 default:
  1648.                     Fatal("%c is a bad mag step\n", *tcp);
  1649.                 }
  1650.                 break;
  1651. #ifdef SUPERCOMMENT
  1652.             case 'o':     /* PostScript command to send */
  1653.                 if ( ++argind >= argc )
  1654.                     Fatal("No argument following -o\n", 0);
  1655.                 PScmd[nps++] = argv[argind];
  1656.                 break;
  1657. #endif
  1658.             case 'p':       /* print n pages  */
  1659.                 if ( sscanf(tcp + 1, "%ld", &PrintPages) != 1 )
  1660.                     Fatal("Argument is not a valid integer\n");
  1661.                 if (PrintPages < 1)
  1662.                   Fatal("Argument of -p must be greater than 0\n");
  1663.                 break;
  1664.             case 'q':       /* quiet operation */
  1665.                 G_quiet = TRUE;
  1666.                 break;
  1667.             case 'r':       /* switch order to process pages */
  1668.                 Reverse = (bool)(!Reverse);
  1669.                 break;
  1670. #ifdef LJ
  1671.             case 's':       /* specify X-origin in dots */
  1672.                 this_arg = 0;
  1673.                 if (!(*++tcp)) this_arg = (++argind >= argc ? 0 : argv[argind]);
  1674.                 else           this_arg = tcp;
  1675.                 if (!this_arg || sscanf(this_arg,"%hd", &pagesize) != 1)
  1676.                    Fatal("Argument of -s is not a valid integer\n");
  1677.                 switch (pagesize) {
  1678.                 case 1: pgsiz_dots = 3150; break;         /* executive */
  1679.                 case 2: pgsiz_dots = 3300; break;         /* letter */
  1680.                 case 3: pgsiz_dots = 4200; break;         /* legal */
  1681.                 case 26: pgsiz_dots = 3507; break;        /* a4 */
  1682.                 case 80: pgsiz_dots = 2250; break;        /* monarc */
  1683.                 case 81: pgsiz_dots = 2850; break;        /* com10 */
  1684.                 case 90: pgsiz_dots = 2598; break;        /* int dl */
  1685.                 case 91: pgsiz_dots = 2704; break;        /* int c5 */
  1686.                 default: Fatal(
  1687. #ifndef vms
  1688.                    "%hd is a bad value for pagesize (1,2,3,26,80,81,90,91)",
  1689. #else
  1690.                    "%d is a bad value for pagesize (1,2,3,26,80,81,90,91)",
  1691. #endif
  1692.                    pagesize);
  1693.                 }
  1694.                 break;
  1695. #endif
  1696.             case 't':       /* ending pagenumber */
  1697.                 if ( sscanf(tcp + 1, "%ld", &LastPage) != 1 )
  1698.                     Fatal("Argument is not a valid integer\n");
  1699.                 LastPageSpecified = TRUE;
  1700.                 break;
  1701.             case 'v':    /* verbatim mode (print pxl-file names) */
  1702.                 G_noverbatim = FALSE;
  1703.                 break;
  1704.             case 'w':       /* don't print out warnings */
  1705.                 G_nowarn = TRUE;
  1706.                 break;
  1707. #ifdef LJ
  1708.             case 'z':
  1709.                 PrintTestPage = (bool)(!PrintTestPage);
  1710.                 break;
  1711. #endif
  1712.             default:
  1713.                 fprintf(stderr, "%c is not a legal flag\n", *tcp);
  1714.             }
  1715.         } else {
  1716.  
  1717.             (void) strcpy(filename, tcp);
  1718.             tcp = strrchr(argv[argind], '/');
  1719.             /* split into directory + file name */
  1720.             if (tcp == NULL)  {
  1721.                 curarea[0] = '\0';
  1722.                 tcp = argv[argind];
  1723.             } else {
  1724.                 (void) strcpy(curarea, argv[argind]);
  1725.                 curarea[tcp-argv[argind]+1] = '\0';
  1726.                 tcp += 1;
  1727.             }
  1728.  
  1729.             (void) strcpy(curname, tcp);
  1730.             /* split into file name + extension */
  1731.             tcp1 = strchr(tcp, '.');
  1732.             if (tcp1 == NULL) {
  1733.                 (void) strcpy(rootname, curname);
  1734.                 strcat(curname, ".dvi");
  1735.             } else {
  1736.                 *tcp1 = '\0';
  1737.                 (void) strcpy(rootname, curname);
  1738.                 *tcp1 = '.';
  1739.             }
  1740.  
  1741.             (void) strcpy(filename, curarea);
  1742.             (void) strcat(filename, curname);
  1743.  
  1744.             if ((dvifp = BINOPEN(filename)) == NULL)  {
  1745.                 Fatal("%s: can't find DVI file \"%s\"\n\n",
  1746.                        G_progname, filename);
  1747.             }
  1748.         }
  1749.         argind++;
  1750.     }
  1751.  
  1752.     x_goffset = (short) MM_TO_PXL(x_offset) + x_origin;
  1753.     y_goffset = (short) MM_TO_PXL(y_offset) + y_origin;
  1754.  
  1755.     if (dvifp == NULL)  {
  1756.       fprintf(stderr,"\nThis is the DVI to %s converter version %s",
  1757.           PRINTER, VERSION);
  1758. #ifdef SEVENBIT
  1759.       fprintf(stderr,", 7bit");
  1760. #endif
  1761.       fprintf(stderr," (%s)\n", OS);
  1762.       fprintf(stderr,"usage: %s [OPTIONS] dvifile\n", G_progname);
  1763.  
  1764.       fprintf(stderr,"OPTIONS are:\n");
  1765. #ifdef DEBUG
  1766.       fprintf(stderr,"\t--  ..... turns debug output on\n");
  1767. #endif
  1768.       fprintf(stderr,
  1769.         "\t-aX ..... X= searchpath leading to pixel-files (.pk or .pxl)\n");
  1770. #ifdef IBM3812
  1771.       fprintf(stderr,
  1772.         "\t-b  ..... take paper for first page from alternate casette\n");
  1773. #endif
  1774.       fprintf(stderr,"\t-cX ..... X= number of copies\n");
  1775. #ifdef LJ2P
  1776.       fprintf(stderr,"\t-dX ..... duplex, X=1: long-edge, 2: short-edge binding\n");
  1777. #endif
  1778.       fprintf(stderr,"\t-D  ..... turns doublepage output on; ");
  1779.       fprintf(stderr,"-D1 odd pages only, -D2 even\n");
  1780.       fprintf(stderr,"\t-eX ..... X= output file\n");
  1781.       fprintf(stderr,"\t-fX ..... print from begin of page number X\n");
  1782. #ifdef LJ
  1783.       fprintf(stderr,
  1784.           "\t-g  ..... do not reset printer at begin of job (go)\n");
  1785. #endif
  1786.       fprintf(stderr,"\t-hX ..... X= name of headerfile\n");
  1787. #ifdef LJ2P
  1788.       fprintf(stderr,"\t-l  ..... landscape mode\n");
  1789. #endif
  1790.       fprintf(stderr,"\t-mX ..... magnification X=0;h;1;2;3;4;5;#xxxx\n");
  1791.       fprintf(stderr,"\t-pX ..... print X pages\n");
  1792.       fprintf(stderr,"\t-q  ..... quiet operation\n");
  1793.       fprintf(stderr,"\t-r  ..... process pages in reverse order\n");
  1794. #ifdef LJ
  1795.       fprintf(stderr,"\t-sX ..... set paper size to X (see documentation)\n");
  1796. #endif
  1797.       fprintf(stderr,"\t-tX ..... print to end of page number X\n");
  1798.       fprintf(stderr,"\t-w  ..... don't print out warnings\n");
  1799.       fprintf(stderr,"\t-v  ..... tell user which pixel-files are used\n");
  1800.       fprintf(stderr,"\t-xX ..... X= x-offset on printout in mm\n");
  1801.       fprintf(stderr,"\t-yX ..... X= y-offset on printout in mm\n");
  1802.       fprintf(stderr,"\t-XO ..... O= x page origin in dots (default=%d)\n",
  1803.             XDEFAULTOFF );
  1804.       fprintf(stderr,"\t-YO ..... O= y page origin in dots (default=%d)\n",
  1805.             YDEFAULTOFF );
  1806. #ifdef LJ
  1807.       fprintf(stderr,
  1808.           "\t-z  ..... print test page with pagecounter after job\n");
  1809. #endif
  1810.       exit(1);
  1811.     }
  1812.     if (EQ(EmitFileName, "")) {
  1813.         if ((EmitFileName = malloc( STRSIZE )) != NULL)
  1814.             allocated_storage += STRSIZE;
  1815.         else
  1816.             Fatal("Can't allocate storage of %d bytes\n",STRSIZE);
  1817.         (void) strcpy(EmitFileName, curname);
  1818.         tcp1 = strchr(EmitFileName, '.');
  1819.         *tcp1 = '\0';
  1820.         strcat(EmitFileName, EMITFILE_EXTENSION);
  1821.     }
  1822. }
  1823.  
  1824.  
  1825. /*-->DoConv*/
  1826. /*********************************************************************/
  1827. /********************************  DoConv  ***************************/
  1828. /*********************************************************************/
  1829. long
  1830. DoConv(num, den, convResolution)
  1831. long    num, den;
  1832. int     convResolution;
  1833. {
  1834.     /*register*/ double conv;
  1835.     conv = ((double)num / (double)den) *
  1836.             ((double)mag / 1000.0) *
  1837.           ((double)convResolution/254000.0);
  1838.  
  1839.     return((long) ((1.0/conv)+0.5));
  1840. }
  1841.  
  1842.  
  1843. /*-->DoSpecial*/
  1844. /*********************************************************************/
  1845. /*****************************  DoSpecial  ***************************/
  1846. /*********************************************************************/
  1847. typedef enum  {
  1848.     None, String, Integer, Number, Dimension}
  1849.  
  1850.  
  1851. ValTyp;
  1852. typedef struct {
  1853.     char    *Key;       /* the keyword string */
  1854.     char    *Val;       /* the value string */
  1855.     ValTyp  vt;         /* the value type */
  1856.     union {         /* the decoded value */
  1857.         int     i;
  1858.         float   n;
  1859.     } v;
  1860. } KeyWord;
  1861. typedef struct {
  1862.     char    *Entry;
  1863.     ValTyp  Typ;
  1864. } KeyDesc;
  1865. #define PSFILE 0
  1866. #define ORIENTATION 1
  1867. #define RESETPOINTS 2
  1868. #define DEFPOINT 3
  1869. #define FILL 4
  1870. #define GRAY 5
  1871. #define PATTERN 6
  1872. #define HPFILE 7
  1873. KeyDesc KeyTab[] = {
  1874.     { "file", String },
  1875.     { "orientation", Integer},
  1876.     { "resetpoints", String},
  1877.     { "defpoint", String},
  1878.     { "fill", String},
  1879.     { "gray", Integer},
  1880.     { "pattern", Integer},
  1881.     { "hpfile", String}
  1882.    /*,
  1883.              {"hsize", Dimension},
  1884.              {"vsize", Dimension},
  1885.              {"hoffset", Dimension},
  1886.              {"voffset", Dimension},
  1887.              {"hscale", Number},
  1888.              {"vscale", Number}*/
  1889.  
  1890.  
  1891. };
  1892.  
  1893.  
  1894. #define NKEYS (sizeof(KeyTab)/sizeof(KeyTab[0]))
  1895. void
  1896. DoSpecial( str, n )
  1897. /* interpret a \special command, made up of keyword=value pairs */
  1898. char    *str;
  1899. int     n;
  1900. {
  1901. char    spbuf[STRSIZE], xs[STRSIZE], ys[STRSIZE];
  1902. char    *sf = NULL;
  1903. float   x,y;
  1904. long     x_pos, y_pos;
  1905. KeyWord k;
  1906. int     i, j, j1;
  1907. static int GrayScale=10, Pattern=1;
  1908. static bool    GrayFill=TRUE;
  1909. static long    p_x[80], p_y[80];
  1910. str[n] = '\0';
  1911. spbuf[0] = '\0';
  1912.  
  1913. SetPosn(h, v);
  1914. while ( (str = GetKeyStr(str, &k)) != NULL ) {
  1915.     /* get all keyword-value pairs */
  1916.     /* for compatibility, single words are taken as file names */
  1917.     if ( k.vt == None && access(k.Key, 0) == 0) {
  1918.         if ( sf )
  1919.             Warning("More than one \\special file name given. %s ignored", sf);
  1920.         (void) strcpy(spbuf, k.Key);
  1921.         sf = spbuf;
  1922. /*
  1923.         for (j = 1; ((sf[j]=='/' ? sf[j]='\\':sf[j]) != '\0'); j++);
  1924. */
  1925.     } else if ( GetKeyVal( &k, KeyTab, NKEYS, &i ) && i != -1 )
  1926.         switch (i) {
  1927.         case PSFILE:
  1928.         case HPFILE:
  1929.             if ( sf )
  1930.                 Warning("More than one \\special file name given. %s ignored",
  1931.                             sf);
  1932.             (void) strcpy(spbuf, k.Val);
  1933.             sf = spbuf;
  1934. /*
  1935.             for (j=1; ((sf[j]=='/' ? sf[j]='\\':sf[j]) != '\0'); j++) ;
  1936. */
  1937.             break;
  1938.         case ORIENTATION:
  1939. #ifdef IBM3812
  1940.             if ((k.v.i >= 0) && (k.v.i < 4)) {
  1941.                 last_ry = UNKNOWN;
  1942.                 sprintf(PMPformat, "\322%c", (unsigned char)k.v.i);
  1943.                 PMPout(2, PMPformat);
  1944.                 if (k.v.i == 1) Landscape = TRUE;
  1945.                 else if (k.v.i == 0) Landscape = FALSE;
  1946. #endif
  1947. #ifdef LJ
  1948.             if ((k.v.i >= 0) && (k.v.i < 2)) {
  1949.                 last_ry = UNKNOWN;
  1950.                 EMIT(outfp, "\033&l%dO\033*rF", (unsigned char)k.v.i);
  1951. #endif
  1952.             } else
  1953.                 Warning( "Invalid orientation (%d)given; ignored.", k.v.i);
  1954.             break;
  1955.         case RESETPOINTS:
  1956.             (void) strcpy(spbuf, k.Val);
  1957.  
  1958.             sf = NULL;
  1959.             break;
  1960.  
  1961.         case DEFPOINT:
  1962.           (void) strcpy(spbuf, k.Val);
  1963.            i=sscanf(spbuf,"%d(%[^,],%s)",&j,xs,ys);
  1964.            if (i>0) {
  1965.               x_pos=h; y_pos=v;
  1966.               if (i>1) {
  1967.                   if (sscanf(xs,"%fpt",&x)>0) {
  1968.                      fprintf(stderr,"x = %f\n",x);
  1969.                      x_pos = PT_TO_DVI(x);
  1970.              }
  1971.               }
  1972.               if (i>2) {
  1973.                   if (sscanf(ys,"%fpt",&y)>0) {
  1974.                      fprintf(stderr,"y = %f\n",y);
  1975.                      y_pos = PT_TO_DVI(y);
  1976.                 }
  1977.               }
  1978.               p_x[j]=x_pos;
  1979.               p_y[j]=y_pos;
  1980.            } else
  1981.              Warning("invalid point definition\n");
  1982.  
  1983.            sf = NULL;
  1984.            break;
  1985.  
  1986.         case FILL:
  1987.           (void) strcpy(spbuf, k.Val);
  1988.            i=sscanf(spbuf,"%d/%d %s",&j,&j1,xs);
  1989.            if (i>1) {
  1990. #ifdef LJ
  1991.               SetPosn(p_x[j], p_y[j]);
  1992.               x_pos = (long)PIXROUND(p_x[j1]-p_x[j], hconv);
  1993.               y_pos = (long)PIXROUND(p_y[j1]-p_y[j], vconv);
  1994.               if (labs(x_pos)<labs(y_pos)) x_pos=x_pos+3;
  1995.               else                         y_pos=y_pos+3;
  1996.               if (GrayFill) {
  1997.                   EMIT(outfp, "\033*c%lda%ldb%dg2P", x_pos, y_pos, GrayScale);
  1998.               } else {
  1999.                   EMIT(outfp, "\033*c%lda%ldb%dg3P", x_pos, y_pos, Pattern);
  2000.               }
  2001.               last_ry = UNKNOWN;
  2002. #endif
  2003.            }
  2004.            break;
  2005.         case GRAY:
  2006.             if ((k.v.i >= 0) && (k.v.i < 101)) {
  2007.                 GrayScale = k.v.i;
  2008.                 GrayFill = TRUE;
  2009.             } else
  2010.                 Warning( "Invalid gray scale (%d) given; ignored.", k.v.i);
  2011.             break;
  2012.         case PATTERN:
  2013.             if ((k.v.i >= 0) && (k.v.i < 7)) {
  2014.                 Pattern = k.v.i;
  2015.                 GrayFill = FALSE;
  2016.             } else
  2017.                 Warning( "Invalid pattern (%d) given; ignored.", k.v.i);
  2018.             break;
  2019.  
  2020.         default:
  2021.             Warning("Can't handle %s=%s command; ignored.", k.Key, k.Val);
  2022.             break;
  2023.         }
  2024.     else
  2025.         Warning("Invalid keyword or value in \\special - <%s> ignored", k.Key);
  2026. }
  2027. if ( sf ) {
  2028.     last_ry = UNKNOWN;
  2029. #ifdef IBM3812
  2030.     PMPflush;
  2031. #endif
  2032.         if (i==HPFILE)
  2033.                 CopyHPFile( sf );
  2034.         else
  2035.             CopyFile( sf );
  2036.    }
  2037. }
  2038.  
  2039.  
  2040. /*-->EmitChar*/
  2041. /**********************************************************************/
  2042. /****************************  EmitChar  ******************************/
  2043. /**********************************************************************/
  2044. void                     /* output a character bitmap */
  2045. EmitChar(c, ce)
  2046. long    c;
  2047. struct char_entry *ce;
  2048. {
  2049.     register int    i;
  2050.     register unsigned char  *sl;
  2051.     unsigned short  nbpl, nwpl;
  2052.     long    total;
  2053. #ifdef LJ
  2054.     unsigned char cnv_buffer[10];
  2055. #endif
  2056.  
  2057.   
  2058. #ifdef LJ
  2059. /*
  2060. printf("Emit character %c(%d) id=%d, yoff=%d[%d], w=%d[%d], h=%d[%d]\n",
  2061.         (char)c,(int)c,
  2062.     fontptr->plusid,
  2063.     ce->yOffset, fontptr->max_yoff,
  2064.     ce->width,   fontptr->max_width,
  2065.     ce->height,  fontptr->max_height
  2066. );
  2067. */
  2068. #endif
  2069.  
  2070.  
  2071.  
  2072.     if ( fontptr->ncdl == 0 ) {
  2073. #ifdef IBM3812
  2074.         used_fontstorage += 1028;
  2075. #endif
  2076. #ifdef LJ
  2077.         if (fontptr->max_width == 0) { /* we have no realistic values */
  2078.                 fontptr->max_yoff = CHAR_HEIGTH_LARGE;
  2079.                 fontptr->max_width = CHAR_WIDTH_LARGE;
  2080.                 fontptr->max_height = CHAR_HEIGTH_LARGE*2;
  2081.         }
  2082.  
  2083.         /* open font dict before first char, set active font */
  2084.         INT_ASCII(cnv_buffer,fontptr->plusid);
  2085. #ifdef LJ4
  2086.         EMIT(outfp, "\033*c%sD\033)s68W", cnv_buffer);
  2087.         EMITB(6, "\0\104\024\2\0\0");   
  2088. #else
  2089.         EMIT(outfp, "\033*c%sD\033)s26W", cnv_buffer);
  2090. #ifdef SEVENBIT
  2091.         EMITB(6, "\0\032\0\1\0\0");   
  2092. #else
  2093.         EMITB(6, "\0\032\0\2\0\0");   
  2094. #endif
  2095. #endif /* LJ 4 */
  2096.         EMITWORD( fontptr->max_yoff);
  2097.         EMITWORD( fontptr->max_width);
  2098.         EMITWORD( fontptr->max_height);
  2099.         EMITB(8, "\0\1\1\25\0\4\0\4");
  2100.         EMITB(6, "\0\0\0\0\0\0");
  2101. #ifdef LJ4
  2102.       EMITB(22,"\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0");
  2103.       EMITB(16,"                ");
  2104.       EMITB(4 ,"\2\130\2\130"); 
  2105. #endif
  2106.         EMIT(outfp, "\033*c4F");
  2107. #endif
  2108.     }
  2109.     if ( fontptr != prevfont ) {   /* because this isn't done on pass 0 */
  2110. #ifdef LJ
  2111.         INT_ASCII(cnv_buffer,fontptr->plusid);
  2112.         EMIT(outfp, "\033(%sX", cnv_buffer);
  2113. #endif
  2114.         prevfont = fontptr;
  2115.     }
  2116.  
  2117. #ifdef USEPXL
  2118.     if (fontptr->id == pk89)   {
  2119.         nbpl = ((int)(ce->width) +  7) >> 3;
  2120.         total = (long)ce->height * nbpl;
  2121.     } else if (fontptr->id == id1002)   {
  2122.         nbpl = ((int)(ce->width) +  7) >> 3;
  2123.         total = (long)ce->height * nbpl;
  2124.     } else if (fontptr->id == id1001) {
  2125.         nwpl = ((int)(ce->width) + 31) >> 5;
  2126.         nbpl = ((int)(ce->width) + 7) >> 3;
  2127.         total = (long)ce->height * nbpl;
  2128.     }
  2129. #else
  2130.     nbpl = (num_cols + 7) >> 3;
  2131.     total = num_rows * nbpl;
  2132. #endif
  2133. /***************************************************************
  2134.     if ( ((char) c == 'i') && (fontptr->plusid == 0)) {
  2135.         long j;
  2136.         printf("cols=%ld, ncols=%ld\n",nwpl,nbpl);
  2137.  
  2138.         printf("%ld Bytes:->",total);
  2139.         for (j=0; j<total;j++) {
  2140.             char *ch; char ic;
  2141.             ch = (char *)(ce->where.address.pixptr);
  2142.             ic = *(ch+j);
  2143.             printf("%X.",ic);
  2144.                 }
  2145.         printf("<- Now Emitting\n");
  2146.         }
  2147. ***************************************************************/
  2148. #ifdef USEPXL
  2149. #ifdef IBM3812
  2150.     if ((short)(ce->height) - ce->yOffset > 55) {
  2151.         ce->yyOffset = (short) ce->height - ce->yOffset;
  2152.         ce->yOffset  = (short) ce->height;
  2153.     } else {
  2154.         ce->yyOffset = (short) 0;
  2155.     }
  2156. #endif
  2157. #ifdef LJ
  2158.         ce->yyOffset = (short) 0;
  2159. #endif
  2160. #endif
  2161.  
  2162.     /* ce->cw = (long)(((double)ce->tfmw / (double)hconv) +0.5); */
  2163.     /* set active font to nn, load font pattern  xx ... */
  2164. #ifdef IBM3812
  2165.     PMPcont(total + 9);
  2166. #ifdef USEPXL
  2167.     sprintf(PMPformat, "\323%c\360%c%c%c",
  2168.         (unsigned char)fontptr->plusid,
  2169.         (unsigned char)VisChar((char)c),
  2170.         (unsigned char)ce->height,
  2171.         (unsigned char)ce->width);
  2172.     PMPout(6, PMPformat);
  2173.     PMPoutC((char)(-(ce->xOffset)));
  2174.     PMPoutC((char)(ce->cw - (-ce->xOffset + ce->width)));
  2175.     PMPoutC((char)(ce->yOffset));
  2176. #else
  2177.     sprintf(PMPformat, "\323%c\360%c%c%c",
  2178.         (unsigned char)fontptr->plusid,
  2179.         (unsigned char)VisChar((char)c),
  2180.         (unsigned char)num_rows,
  2181.         (unsigned char)num_cols);
  2182.     PMPout(6, PMPformat);
  2183.     PMPoutC((char)(-x_offset));
  2184.     PMPoutC((char)(ce->cw - (-x_offset + num_cols)));
  2185.     PMPoutC((char)num_rows-y_offset);
  2186. #endif
  2187. #endif
  2188. #ifdef LJ
  2189.     INT_ASCII(cnv_buffer,fontptr->plusid);
  2190.     EMIT(outfp, "\033*c%sd%dE\033(s%ldW", cnv_buffer,
  2191.         (unsigned int)VisChar((char)c), (long)(total + 16));
  2192.     EMITB(4, "\4\0\016\1");
  2193. /*    EMITC((char)(Landscape==TRUE)); */
  2194.     EMITC((char)0);
  2195.     EMITC((char)0);
  2196. #ifdef USEPXL
  2197.     EMITWORD(-ce->xOffset);
  2198.     EMITWORD(ce->yOffset);
  2199.     EMITWORD(ce->width);
  2200.     EMITWORD(ce->height);
  2201. #else
  2202.     EMITWORD(-x_offset);
  2203.     EMITWORD(num_rows-y_offset);
  2204.     EMITWORD(num_cols);
  2205.     EMITWORD(num_rows);
  2206. #endif
  2207.     EMITWORD((int)ce->cw * 4);
  2208. #endif
  2209. #ifdef USEPXL
  2210.  
  2211.     if (fontptr->id == pk89)
  2212.         PkRaster(ce, FALSE);
  2213.     else if (fontptr->id == id1002)
  2214.         for (i = 0; i < (int) ce->height; i++) {
  2215.             sl = ((unsigned char *)(ce->where.address.pixptr) + i * nbpl);
  2216.             EMITL(nbpl, sl);
  2217.         }
  2218.     else if (fontptr->id == id1001)
  2219.         for (i = 0; i < (int) ce->height; i++) {
  2220.             sl = (unsigned char *)(ce->where.address.pixptr + i * nwpl);
  2221.             EMITL(nbpl, sl);
  2222.         }
  2223. #else
  2224.     for (i = num_rows; i > 0; i--)
  2225.       {
  2226.         EMITL (nbpl, bits + (i-1) * nbpl);
  2227.       }
  2228. #endif
  2229. #ifdef IBM3812
  2230. #ifdef USEPXL
  2231.     used_fontstorage += (long)ce->height * ((ce->width + 15) >> 4)
  2232.         *2 + 14;
  2233. #else
  2234.     used_fontstorage += (long)num_rows * ((num_cols + 15) >> 4)
  2235.         *2 + 14;
  2236. #endif
  2237. #endif
  2238. #ifdef LJ
  2239. #ifdef USEPXL
  2240.     used_fontstorage += 64 * (((int)((ce->height * ce->width) - 1) / 64) + 1);
  2241. #else
  2242.     used_fontstorage += 64 * ((((num_rows * num_cols) - 1) / 64) + 1);
  2243. #endif
  2244. #endif
  2245.     fontptr->ncdl += 1;
  2246.     G_ncdl += 1;
  2247. }
  2248.  
  2249.  
  2250. /*-->RasterLine*/
  2251. /**********************************************************************/
  2252. /****************************  RasterLine  ****************************/
  2253. /**********************************************************************/
  2254. void
  2255. RasterLine(ce, nbpl, current_line, buffer)
  2256. struct char_entry *ce;
  2257. unsigned short  nbpl, current_line;
  2258. char    *buffer;
  2259. {
  2260. #ifdef IBM3812
  2261.     long    total;
  2262.     static unsigned short   maxlines;
  2263.  
  2264.     if (current_line == 0) {
  2265. #ifdef USEPXL
  2266.         maxlines = ce->height;
  2267.  
  2268.         MoveVert(-ce->yOffset);      /* move cursor up */
  2269.         MoveHor(-ce->xOffset);       /* move cursor right */
  2270. #else
  2271.         maxlines = num_rows;
  2272.  
  2273.         MoveVert(-(num_rows-y_offset));      /* move cursor up */
  2274.         MoveHor(-x_offset);       /* move cursor right */
  2275. #endif
  2276.         last_ry = UNKNOWN;       /* next time full positioning */
  2277.     }
  2278.  
  2279.     if (current_line % maxlines == 0) {
  2280.         if (current_line > 0) {    /* maxlines lines have been printed*/
  2281.             MoveVert(maxlines);   /*   move cursor down     */
  2282.             last_ry = UNKNOWN;    /* next time full positioning */
  2283.         }
  2284. #ifdef USEPXL
  2285.         total = (long)(ce->height - current_line) * (long)nbpl;
  2286. #else
  2287.         total = (long)(num_rows - current_line) * (long)nbpl;
  2288. #endif
  2289.         if ((total + 9) > 65535) {
  2290.             maxlines = (unsigned short)((65535 - 9) / nbpl);
  2291.             total = (long)maxlines * (long)nbpl;
  2292.         }
  2293.  
  2294.         PMPcont(total + 9);
  2295.         PMPout(2, "\365\0");
  2296.         EMITWORD(maxlines);
  2297. #ifdef USEPXL
  2298.         EMITWORD(ce->width);
  2299. #else
  2300.         EMITWORD(num_cols);
  2301. #endif
  2302.         PMPoutC((unsigned char) (total >> 16) & 0xFF);
  2303.         PMPoutC((unsigned char) (total >> 8 ) & 0xFF);
  2304.         PMPoutC((unsigned char)  total     & 0xFF);
  2305.     }
  2306.     EMITL((int)nbpl, buffer);
  2307. #endif
  2308. #ifdef LJ
  2309.     register int    emitbytes;
  2310.  
  2311.     for (emitbytes = (int)nbpl;
  2312.         (*(buffer + emitbytes - 1) == '\0') && (emitbytes > 0);
  2313.         emitbytes--) ;
  2314.     EMIT(outfp, "\033*b%dW", emitbytes);
  2315.     EMITL(emitbytes, buffer);
  2316. #endif
  2317. }
  2318.  
  2319.  
  2320. /*-->RasterChar*/
  2321. /**********************************************************************/
  2322. /****************************  RasterChar  ****************************/
  2323. /**********************************************************************/
  2324. void                     /* raster a character bitmap */
  2325. RasterChar(ce)
  2326. struct char_entry *ce;
  2327. {
  2328.     int     i;
  2329.     register unsigned char  *sl;
  2330.     unsigned short  nbpl, nwpl;
  2331.     unsigned char   raster_line_buf[BYTES_PER_PIXEL_LINE];
  2332.  
  2333. #ifdef DEBUG
  2334.     if (Debug)
  2335.         fprintf(stderr,"Raster character ...size=%d \n", (int)ce->charsize );
  2336. #endif
  2337.  
  2338. #ifdef USEPXL
  2339.     if (fontptr->id == pk89)   {
  2340.         nbpl = ((int)(ce->width) +  7) >> 3;
  2341.     } else if (fontptr->id == id1002)   {
  2342.         nbpl = ((int) ce->width +  7) >> 3;
  2343.     } else if (fontptr->id == id1001) {
  2344.         nwpl = ((int) ce->width + 31) >> 5;
  2345.         nbpl = ((int) ce->width + 7) >> 3;
  2346.     }
  2347. #else
  2348.     nbpl = (num_cols + 7) >> 3;
  2349. #endif
  2350.  
  2351. #ifdef LJ
  2352. #ifdef LJ4
  2353.     EMIT(outfp, "\033*t600R\033*r1A");
  2354. #else
  2355.     EMIT(outfp, "\033*t300R\033*r1A");
  2356. #endif
  2357. #endif
  2358.  
  2359.                                             { /* read pixel from file */
  2360.     if ((ce->charsize == HUGE_SIZE) && (fontptr->id != pk89))
  2361.         OpenFontFile();
  2362. #ifdef USEPXL
  2363.         fseek(pxlfp, ce->where.address.fileOffset, 0);
  2364. #else
  2365.         fseek(gfin, ce->where.address.fileOffset, 0);
  2366.         gettochar();
  2367.         readbits();
  2368. #endif
  2369.     }
  2370.  
  2371. #ifdef USEPXL
  2372.     if (fontptr->id == pk89)
  2373.         PkRaster(ce, TRUE);
  2374.     else if (fontptr->id == id1002) {
  2375.         for (i = 0; i < (int) ce->height; i++) {
  2376.             if (ce->charsize == HUGE_SIZE) {
  2377.                 fread(raster_line_buf, 1, (int) nbpl, pxlfp);
  2378.                 sl = raster_line_buf;
  2379.             } else
  2380.                 sl = ((unsigned char *)(ce->where.address.pixptr)
  2381.                     + i * nbpl);
  2382.  
  2383.             RasterLine(ce, (unsigned int)nbpl, i, sl);
  2384.         }
  2385.     } else if (fontptr->id == id1001) {
  2386.         long    filediff;
  2387.         filediff = (long)nwpl * 4 - nbpl;
  2388.         for (i = 0; i < (int) ce->height; i++) {
  2389.             if (ce->charsize == HUGE_SIZE) {
  2390.                 fread(raster_line_buf, 1, (int) nbpl, pxlfp);
  2391.                 /* skip fill bytes */
  2392.                 fseek(pxlfp, filediff, 1);
  2393.                 sl = raster_line_buf;
  2394.             } else
  2395.                 sl = (unsigned char *)(ce->where.address.pixptr + i * nwpl);
  2396.  
  2397.             RasterLine(ce, (unsigned int)nbpl, i, sl);
  2398.         }
  2399.     }
  2400. #else
  2401.     for (i = num_rows; i > 0; i--)
  2402.       RasterLine(ce, (unsigned int)nbpl, i, bits + (i-1) * nbpl);
  2403. #endif
  2404. #ifdef LJ
  2405.     EMIT(outfp, "\033*rB");
  2406. #endif
  2407.     last_ry = UNKNOWN;
  2408. }
  2409.  
  2410.  
  2411. /*-->Fatal*/
  2412. /**********************************************************************/
  2413. /******************************  Fatal  *******************************/
  2414. /**********************************************************************/
  2415. void
  2416. Fatal(fmt, a, b, c)      /* issue a fatal error message */
  2417. char    *fmt;           /* format              */
  2418. char    *a, *b, *c;     /* arguments           */
  2419. {
  2420.     fprintf(stderr, "\n");
  2421.     fprintf(stderr, "%s: FATAL--", G_progname);
  2422.     fprintf(stderr, fmt, a, b, c);
  2423.     fprintf(stderr, "\n\n");
  2424. #ifndef vms
  2425.     exit(2);
  2426. #else
  2427.     exit(SS$_ABORT);
  2428. #endif
  2429. }
  2430.  
  2431.  
  2432. /*-->FindPostAmblePtr*/
  2433. /**********************************************************************/
  2434. /************************  FindPostAmblePtr  **************************/
  2435. /**********************************************************************/
  2436. void
  2437. FindPostAmblePtr(postambleptr)
  2438. long    *postambleptr;
  2439. /* this routine will move to the end of the file and find the start
  2440.     of the postamble */
  2441. {
  2442.     long    i;
  2443.     fseek (dvifp,  0l, 2);   /* goto end of file */
  2444.     *postambleptr = ftell (dvifp) - 4;
  2445.     fseek (dvifp, *postambleptr, 0);
  2446.     while (TRUE) {
  2447.         fseek (dvifp, --(*postambleptr), 0);
  2448.         if (((i = NoSignExtend(dvifp, 1)) != 223) &&
  2449.             (i != DVIFORMAT))
  2450.             Fatal ("Bad end of DVI file");
  2451.         if (i == DVIFORMAT)
  2452.             break;
  2453.     }
  2454.     fseek (dvifp, (*postambleptr) - 4, 0);
  2455.     (*postambleptr) = NoSignExtend(dvifp, 4);
  2456.     fseek (dvifp, *postambleptr, 0);
  2457. }
  2458.  
  2459.  
  2460. /*-->GetBytes*/
  2461. /**********************************************************************/
  2462. /*****************************  GetBytes  *****************************/
  2463. /**********************************************************************/
  2464. void
  2465. GetBytes(fp, cp, n)     /* get n bytes from file fp */
  2466. /*register*/ FILE *fp;      /* file pointer  */
  2467. register char   *cp;    /* character pointer */
  2468. int     n;            /* number of bytes  */
  2469. {
  2470.     while (n--)
  2471.         *cp++ = (char)getc(fp);
  2472. }
  2473.  
  2474.  
  2475. /*-->GetFontDef*/
  2476. /**********************************************************************/
  2477. /**************************** GetFontDef  *****************************/
  2478. /**********************************************************************/
  2479. void
  2480. GetFontDef()
  2481. /***********************************************************************
  2482.    Read the font  definitions as they  are in the  postamble of the  DVI
  2483.    file.
  2484. ***********************************************************************/
  2485. {
  2486.     unsigned char   byte;
  2487.     while (((byte = (unsigned char) NoSignExtend(dvifp, 1)) >= FNT_DEF1) &&
  2488.         (byte <= FNT_DEF4)) {
  2489.         switch (byte) {
  2490.         case FNT_DEF1:
  2491.             ReadFontDef ( NoSignExtend(dvifp, 1));
  2492.             break;
  2493.         case FNT_DEF2:
  2494.             ReadFontDef ( NoSignExtend(dvifp, 2));
  2495.             break;
  2496.         case FNT_DEF3:
  2497.             ReadFontDef ( NoSignExtend(dvifp, 3));
  2498.             break;
  2499.         case FNT_DEF4:
  2500.             ReadFontDef ( NoSignExtend(dvifp, 4));
  2501.             break;
  2502.         default:
  2503.             Fatal ("Bad byte value in font defs");
  2504.             break;
  2505.         }
  2506.     }
  2507.     if (byte != POST_POST)
  2508.         Fatal ("POST_POST missing after fontdefs");
  2509. }
  2510.  
  2511.  
  2512. /*-->GetKeyStr*/
  2513. /**********************************************************************/
  2514. /*****************************  GetKeyStr  ****************************/
  2515. /**********************************************************************/
  2516. /* extract first keyword-value pair from string (value part may be null)
  2517.  * return pointer to remainder of string
  2518.  * return NULL if none found
  2519.  */
  2520. char    KeyStr[STRSIZE];
  2521. char    ValStr[STRSIZE];
  2522. char
  2523. *GetKeyStr( str, kw )
  2524. char    *str;
  2525. KeyWord *kw;
  2526. {
  2527.     char    *s, *k, *v, t;
  2528.     if ( !str )
  2529.         return( NULL );
  2530.     for ( s = str; *s == ' '; s++)
  2531.         ;          /* skip over blanks */
  2532.     if ( *s == '\0' )
  2533.         return( NULL );
  2534.     for ( k = KeyStr; /* extract keyword portion */
  2535.     *s != ' ' && *s != '\0' && *s != '=';
  2536.         *k++ = *s++)
  2537.         ;
  2538.     *k = '\0';
  2539.     kw->Key = KeyStr;
  2540.     kw->Val = v = NULL;
  2541.     kw->vt = None;
  2542.     for ( ; *s == ' '; s++)
  2543.         ;            /* skip over blanks */
  2544.     if ( *s != '=' )         /* look for "=" */
  2545.         return( s );
  2546.     for ( s++; *s == ' '; s++);      /* skip over blanks */
  2547.     if ( *s == '\'' || *s == '\"' )  /* get string delimiter */
  2548.         t = *s++;
  2549.     else
  2550.         t = ' ';
  2551.     for ( v = ValStr; /* copy value portion up to delim */
  2552.     *s != t && *s != '\0';
  2553.         *v++ = *s++)
  2554.         ;
  2555.     if ( t != ' ' && *s == t )
  2556.         s++;
  2557.     *v = '\0';
  2558.     kw->Val = ValStr;
  2559.     kw->vt = String;
  2560.     return( s );
  2561. }
  2562.  
  2563.  
  2564. /*-->GetKeyVal*/
  2565. /**********************************************************************/
  2566. /*****************************  GetKeyVal  ****************************/
  2567. /**********************************************************************/
  2568. /* get next keyword-value pair decode value according to table entry  */
  2569. bool
  2570. GetKeyVal( kw, tab, nt, tno)
  2571. KeyWord *kw;
  2572. KeyDesc tab[];
  2573. int     nt;
  2574. int     *tno;
  2575. {
  2576.     int     i;
  2577.     char    c = '\0';
  2578.     *tno = -1;
  2579.     for (i = 0; i < nt; i++)
  2580.         if ( IsSame(kw->Key, tab[i].Entry) ) {
  2581.             *tno = i;
  2582.             switch ( tab[i].Typ ) {
  2583.             case None:
  2584.                 if ( kw->vt != None )
  2585.                     return( FALSE );
  2586.                 break;
  2587.             case String:
  2588.                 if ( kw->vt != String )
  2589.                     return( FALSE );
  2590.                 break;
  2591.             case Integer:
  2592.                 if ( kw->vt != String )
  2593.                     return( FALSE );
  2594.                 if ( sscanf(kw->Val, "%d%c",
  2595.                     &(kw->v.i), &c) != 1
  2596.                      || c != '\0' )
  2597.                     return( FALSE );
  2598.                 break;
  2599. /*              case Number:
  2600.  *              case Dimension:
  2601.  *                  if( kw->vt != String ) return( FALSE );
  2602.  *                  if( sscanf(kw->Val,"%f%c",
  2603.  *                     &(kw->v.n), &c) != 1
  2604.  *                  || c != '\0' ) return( FALSE );
  2605.  *                  break;
  2606.  */
  2607.             }
  2608.             kw->vt = tab[i].Typ;
  2609.             return( TRUE );
  2610.         }
  2611.     return( TRUE );
  2612. }
  2613.  
  2614.  
  2615.  
  2616. /*-->IsSame*/
  2617. /**********************************************************************/
  2618. /*******************************  IsSame  *****************************/
  2619. /**********************************************************************/
  2620. bool                  /* compare strings, ignore case */
  2621. IsSame(a, b)
  2622. char    *a, *b;
  2623. {
  2624.     char    *x, *y;
  2625.     x = a;
  2626.     y = b;
  2627.     for ( ; *a != '\0'; )
  2628.         if ( tolower(*a++) != tolower(*b++) )
  2629.             return( FALSE );
  2630.     return( *x == *y ? TRUE : FALSE );
  2631. }
  2632.  
  2633.  
  2634. /*-->NoSignExtend*/
  2635. /**********************************************************************/
  2636. /***************************  NoSignExtend  ***************************/
  2637. /**********************************************************************/
  2638. long
  2639. NoSignExtend(fp, n)     /* return n byte quantity from file fd */
  2640. register FILE *fp;      /* file pointer    */
  2641. register int    n;      /* number of bytes */
  2642. {
  2643.     long    x;      /* number being constructed */
  2644.     x = 0;
  2645.     while (n--)  {
  2646.         x <<= 8;
  2647.         x |= getc(fp);
  2648.     }
  2649.     return(x);
  2650. }
  2651.  
  2652.  
  2653. /*-->OpenFontFile*/
  2654. /**********************************************************************/
  2655. /************************** OpenFontFile  *****************************/
  2656. /**********************************************************************/
  2657. void
  2658. OpenFontFile()
  2659. /***********************************************************************
  2660.     The original version of this dvi driver reopened the font file  each
  2661.     time the font changed, resulting in an enormous number of relatively
  2662.     expensive file  openings.   This version  keeps  a cache  of  up  to
  2663.     MAXOPEN open files,  so that when  a font change  is made, the  file
  2664.     pointer, pxlfp, can  usually be  updated from the  cache.  When  the
  2665.     file is not found in  the cache, it must  be opened.  In this  case,
  2666.     the next empty slot  in the cache  is assigned, or  if the cache  is
  2667.     full, the least used font file is closed and its slot reassigned for
  2668.     the new file.  Identification of the least used file is based on the
  2669.     counts of the number  of times each file  has been "opened" by  this
  2670.     routine.  On return, the file pointer is always repositioned to  the
  2671.     beginning of the file.
  2672. ***********************************************************************/
  2673. {
  2674.     int     i, least_used, current;
  2675.     struct pixel_list tmp;
  2676.  
  2677. #ifdef DEBUG
  2678.     if (Debug)
  2679.         fprintf(stderr,"open font file %d\n", fontptr->font_file_id);
  2680. #endif
  2681. /*
  2682. fprintf(stderr,"? %lx == %lx\n", pfontptr,fontptr);
  2683. */
  2684.     if ((pfontptr == fontptr) && (pxlfp != NO_FILE))
  2685.         return;         /* we need not have been called */
  2686.  
  2687.        if (fontptr->font_file_id == NO_FILE)
  2688.         return;         /* we need not have been called */
  2689.  
  2690.     tmp = pixel_files[1];
  2691.     for (current = 1;
  2692.         (current <= nopen) && (tmp.pixel_file_id != fontptr->font_file_id); ) {
  2693.         ++current;
  2694.         tmp = pixel_files[current];
  2695.     }
  2696.     /* try to find file in open list */
  2697.  
  2698.     if (current <= nopen)       /* file already open */ {
  2699.         if ( (pxlfp = pixel_files[current].pixel_file_id) != NO_FILE )
  2700.             fseek(pxlfp, 0l, 0);
  2701.             /* reposition to start of file */
  2702.     } else {
  2703.             /* file not in open list          */
  2704.         if (nopen < MAXOPEN)    /* just add it to list    */
  2705.             current = ++nopen;
  2706.         else  {
  2707.             /* list full -- find least used file,     */
  2708.             /* close it, and reuse slot for new file  */
  2709.             least_used = 1;
  2710.             for (i = 2; i <= MAXOPEN; ++i)
  2711.                 if (pixel_files[least_used].use_count>pixel_files[i].use_count)
  2712.                     least_used = i;
  2713.             if (pixel_files[least_used].pixel_file_id != NO_FILE) {
  2714.                 FILE * fid;
  2715.                 struct font_entry *fp;
  2716.                 fid = pixel_files[least_used].pixel_file_id;
  2717.                 /* mark file as being closed in the entry */
  2718.                 fp = hfontptr;
  2719.                 while (fp != NULL && fp->font_file_id != fid) fp = fp->next;
  2720.                 if (fp == NULL)
  2721.                    Fatal("Open file %x not found in font entry list.\n", fid);
  2722.                 else {
  2723.                     fp->font_file_id = NULL;
  2724.                 }
  2725.                 fclose( fid );
  2726.             }
  2727. #ifdef DEBUG
  2728.             if (Debug)
  2729.                  fprintf(stderr,"\n__reuse slot %d\n", least_used);
  2730. #endif
  2731.             current = least_used;
  2732.         }
  2733.         if ((pxlfp = BINOPEN(fontptr->name)) == NULL) {
  2734.             Warning("PXL-file %s could not be opened", fontptr->name);
  2735.             pxlfp = NO_FILE;
  2736.         } else {
  2737. #ifdef DEBUG
  2738.              if (Debug) fprintf(stderr,
  2739.              "Opening File  <%s> /%x/, Size(font_entry)=%d\n",
  2740.               fontptr->name, pxlfp, sizeof(struct font_entry ));
  2741. #endif
  2742.  
  2743.         }
  2744.         pixel_files[current].pixel_file_id = pxlfp;
  2745.         pixel_files[current].use_count = 0;
  2746.     }
  2747.     pfontptr = fontptr;         /* make previous = current font */
  2748.     fontptr->font_file_id = pxlfp;      /* set file identifier */
  2749.     pixel_files[current].use_count++;   /* update reference count */
  2750. #ifndef USEPXL
  2751.     gfin = pxlfp;
  2752. #endif
  2753. }
  2754.  
  2755.  
  2756. /*-->PixRound*/
  2757. /**********************************************************************/
  2758. /*****************************  PixRound  *****************************/
  2759. /**********************************************************************/
  2760. long
  2761. PixRound(x, conv)       /* return rounded number of pixels */
  2762. long    x;          /* in DVI units     */
  2763. long    conv;       /* conversion factor */
  2764. {
  2765.     return((x + conv) / conv);
  2766. }
  2767.  
  2768.  
  2769. /*-->ReadFontDef*/
  2770. /**********************************************************************/
  2771. /****************************  ReadFontDef  ***************************/
  2772. /**********************************************************************/
  2773. void
  2774. ReadFontDef(k)
  2775. long    k;
  2776. {
  2777.     long    t;
  2778.     unsigned short i;
  2779.     char    nname[STRSIZE];
  2780.     int nmag;
  2781.     struct font_entry *tfontptr; /* temporary font_entry pointer   */
  2782.     struct char_entry *tcharptr; /* temporary char_entry pointer  */
  2783.     static int      plusid = 0;
  2784.     bool font_found = FALSE;
  2785. #ifdef LJ
  2786.     int depth, max_depth;
  2787. #endif
  2788.  
  2789. #ifdef DEBUG
  2790.     if (Debug)
  2791.         fprintf(stderr,"Mallocating %d Bytes)...\n",
  2792.             sizeof(struct font_entry ));
  2793. #endif
  2794.  
  2795.     if ((tfontptr = NEW(struct font_entry )) == NULL)
  2796.         Fatal("can't malloc space for font_entry");
  2797.  
  2798.     allocated_storage += sizeof(struct font_entry );
  2799.  
  2800.     tfontptr->next = hfontptr;
  2801.     tfontptr->font_file_id = NULL;
  2802.     fontptr = hfontptr = tfontptr;
  2803.     tfontptr->ncdl = 0;
  2804.     tfontptr->k = k;
  2805.     tfontptr->c = NoSignExtend(dvifp, 4); /* checksum */
  2806.     tfontptr->s = NoSignExtend(dvifp, 4); /* space size */
  2807.     tfontptr->d = NoSignExtend(dvifp, 4); /* design size */
  2808.     tfontptr->a = (int) NoSignExtend(dvifp, 1); /* length for font name */
  2809.     tfontptr->l = (int) NoSignExtend(dvifp, 1); /* device length */
  2810.  
  2811. #ifdef LJ
  2812.     tfontptr->max_width = tfontptr->max_height = tfontptr->max_yoff =
  2813.                           max_depth = 0;
  2814. #endif
  2815.  
  2816.     GetBytes(dvifp, tfontptr->n, tfontptr->a + tfontptr->l);
  2817.     tfontptr->n[tfontptr->a+tfontptr->l] = '\0';
  2818.  
  2819.     tfontptr->font_mag = (long)((
  2820.          ActualFactor((long)(1000.0*tfontptr->s/(double)tfontptr->d+0.5))
  2821.          * ActualFactor(mag)
  2822. #ifdef USEPXL
  2823.          * RESOLUTION * 5.0
  2824. #else
  2825.          * RESOLUTION
  2826. #endif
  2827.            ) + 0.5);
  2828. /*
  2829. printf("[%ld]=%lf * %lf * %lf + 0.5 = %ld\n",
  2830.     ((long)(1000.0*tfontptr->s/(double)tfontptr->d+0.5)),
  2831.     ActualFactor((long)(1000.0*tfontptr->s/(double)tfontptr->d+0.5)),
  2832.     ActualFactor(mag),
  2833.     (double)RESOLUTION * 5,
  2834.     tfontptr->font_mag );
  2835. */
  2836.  
  2837.  
  2838.     if (!(font_found = (bool)
  2839.           findfile(PXLpath, tfontptr->n, tfontptr->font_mag, tfontptr->name,FALSE))) {
  2840.           Warning(tfontptr->name); /* contains error messsage */
  2841.           tfontptr->font_file_id = NO_FILE;
  2842.         }
  2843.     else if (!( (G_noverbatim) || (G_quiet) ) )
  2844.         fprintf(stderr,"%d: using font <%s>\n",
  2845.         plusid,tfontptr->name);
  2846.  
  2847.     tfontptr->plusid = plusid;
  2848.     plusid++;
  2849.  
  2850.     /* sprintf(tfontptr->psname,"%s.%ld.%d",
  2851.        tfontptr->n,tfontptr->font_mag,tfontptr->plusid);*/
  2852.  
  2853. #ifdef LJ
  2854.     if (plusid >= HANDLE_MAX_FONTS)
  2855.         Fatal("can handle only %d fonts! ask a wizzard..\n",
  2856.                HANDLE_MAX_FONTS);
  2857. #endif
  2858.     if (tfontptr != pfontptr) {
  2859.         if (font_found) OpenFontFile();
  2860.         else
  2861.             pxlfp = NO_FILE;
  2862.     }
  2863. #ifdef USEPXL
  2864.     if ( pxlfp == NO_FILE ) {        /* allow missing pxl files */
  2865.         tfontptr->magnification = 0;
  2866.         tfontptr->designsize = 0;
  2867. #endif
  2868.         for (i = FIRSTFNTCHAR; i <= LASTFNTCHAR; i++) {
  2869.             tcharptr = &(tfontptr->ch[i]);
  2870. #ifdef USEPXL
  2871.             tcharptr->width = 0;
  2872.             tcharptr->height = 0;
  2873.             tcharptr->xOffset = 0;
  2874.             tcharptr->yOffset = 0;
  2875. #endif
  2876.             tcharptr->where.isloaded = FALSE;
  2877.             tcharptr->where.address.fileOffset = NONEXISTANT;
  2878.             tcharptr->tfmw = 0;
  2879.         }
  2880. #ifdef USEPXL
  2881.         return;
  2882.     }
  2883.     t = (long) NoSignExtend(pxlfp, 1);
  2884.     if (t == 0) {
  2885.         t = (long) NoSignExtend(pxlfp, 1);
  2886.         t = (long) NoSignExtend(pxlfp, 2);
  2887.         if (t == 1002)
  2888.             tfontptr->id = id1002;
  2889.         else if (t == 1001)
  2890.             tfontptr->id = id1001;
  2891.         else
  2892.             Fatal("Unknown Version of PXL-format\n");
  2893.     } else {
  2894.         if (t == PK_PRE)    {
  2895.             unsigned char   temp_byte;
  2896.             temp_byte = (unsigned char) NoSignExtend(pxlfp, 1);
  2897.             if (temp_byte != PK_ID) Fatal(
  2898.                "Wrong Version of pk file!  (%d should be 89)\n",
  2899.                              (int)temp_byte);
  2900.             else
  2901.                 tfontptr->id = pk89;
  2902.         } else
  2903.             Fatal("unknown font format in file <%s> !\n",fontptr->name);
  2904.     }
  2905.  
  2906.     if ((tfontptr->id == id1002) || (tfontptr->id == id1001)) {
  2907.         fseek(pxlfp, -20l, 2);
  2908.  
  2909.         t = NoSignExtend(pxlfp, 4);
  2910.         if ((tfontptr->c != 0) && (t != 0) && (tfontptr->c != t))
  2911.     Warning("font = \"%s\",\n->tfm checksum = %lX,\n->pxl checksum = %lX",
  2912.                           tfontptr->name, tfontptr->c, t);
  2913.         tfontptr->magnification = NoSignExtend(pxlfp, 4);
  2914.         tfontptr->designsize    = NoSignExtend(pxlfp, 4);
  2915.  
  2916.         if (tfontptr->id == id1001)
  2917.             fseek(pxlfp, (long) (NoSignExtend(pxlfp, 4) * 4), 0);
  2918.         else
  2919.             fseek(pxlfp, (long) NoSignExtend(pxlfp, 4) , 0);
  2920.  
  2921.         for (i = FIRSTFNTCHAR; i <= 127; i++) {   /* only defined for 7bit*/
  2922.             tcharptr = &(tfontptr->ch[i]);
  2923.             tcharptr->width   = (unsigned short) NoSignExtend(pxlfp, 2);
  2924.             tcharptr->height  = (unsigned short) NoSignExtend(pxlfp, 2);
  2925.             tcharptr->xOffset = (short) SignExtend(pxlfp, 2);
  2926.             tcharptr->yOffset = (short) SignExtend(pxlfp, 2);
  2927.             tcharptr->where.isloaded = FALSE;
  2928.             if (tfontptr->id == id1001)
  2929.                 tcharptr->where.address.fileOffset = NoSignExtend(pxlfp,4) * 4;
  2930.             else
  2931.                 tcharptr->where.address.fileOffset = NoSignExtend(pxlfp,4);
  2932.             tcharptr->tfmw = (long)
  2933.             (   (double)(NoSignExtend(pxlfp, 4))
  2934.               * (double)tfontptr->s / (double) 0x100000 );
  2935.             tcharptr->cw = (long)(((double)tcharptr->tfmw/(double)hconv) + 0.5);
  2936.  
  2937.             if (tcharptr->width  > CHAR_WIDTH_LARGE  ||
  2938.                 tcharptr->height > CHAR_HEIGTH_LARGE )
  2939.                 tcharptr->charsize = LARGE_SIZE;
  2940.             else
  2941.                 tcharptr->charsize = SMALL_SIZE;
  2942. #ifdef LJ
  2943.             max(tfontptr->max_width,tcharptr->width);
  2944.             max(tfontptr->max_height,tcharptr->height);
  2945.             if (tcharptr->yOffset > 0  && (int)tfontptr->max_yoff < (int)tcharptr->yOffset) 
  2946.               tfontptr->max_yoff = tcharptr->yOffset;
  2947.             if ((depth = tcharptr->height - tcharptr->yOffset)>max_depth)
  2948.                    max_depth = depth;
  2949. #endif
  2950.  
  2951.         }
  2952. #ifdef LJ
  2953.         tfontptr->max_height = max_depth ? tfontptr->max_yoff+max_depth :
  2954.                                            tfontptr->max_yoff+1;
  2955. #endif
  2956.     } else { /* PK 89 format */
  2957.         unsigned char   temp_byte;
  2958.         register unsigned char  flag_byte;
  2959.         long    hppp, vppp, pkloc, packet_length, temp;
  2960.         int     car, ii;
  2961.  
  2962.         /* read comment */
  2963.         for ( ii = temp_byte = (unsigned char) NoSignExtend(pxlfp, 1);
  2964.               ii>0; ii--) {
  2965.             flag_byte = (unsigned char) NoSignExtend(pxlfp, 1);
  2966. #ifdef DEBUG
  2967.             if (Debug) fprintf(stderr, "%c", flag_byte ) ;
  2968. #endif
  2969.         }
  2970. #ifdef DEBUG
  2971.         if (Debug) fprintf(stderr, "\n");
  2972. #endif
  2973.         pkloc = 3 + (int)temp_byte;
  2974.         tfontptr->designsize = NoSignExtend(pxlfp, 4);
  2975.  
  2976.         t = NoSignExtend(pxlfp, 4);
  2977.         if ((tfontptr->c != 0) && (t != 0) && (tfontptr->c != t))
  2978.           Warning("font = \"%s\",\n->tfm checksum = %lX,\n->pxl checksum = %lX",
  2979.                  tfontptr->name, tfontptr->c, t);
  2980.  
  2981.         hppp = NoSignExtend(pxlfp, 4);
  2982.         vppp = NoSignExtend(pxlfp, 4);
  2983.         if (hppp != vppp)
  2984.             Warning("aspect ratio is %ld:%ld (should be 1:1)!", hppp,vppp);
  2985.         tfontptr->magnification = (long)(hppp * 72.27 * 5 / 65536l + 0.5);
  2986.  
  2987.         pkloc += 16;
  2988.         flag_byte = skip_specials(&pkloc);
  2989.  
  2990.         while (flag_byte != PK_POST) {
  2991.         if ((flag_byte & 7) == 7) {
  2992.         /* fprintf(stderr,"\nRead long character preamble\n"); */
  2993.  
  2994.            packet_length = (unsigned long)NoSignExtend(pxlfp,4);
  2995.            if ((car = (int)NoSignExtend(pxlfp, 4)) > (LASTFNTCHAR))
  2996.                 Fatal("Bad character (%d) in PK-File\n",(int)car) ;
  2997.  
  2998.            tcharptr = &(tfontptr->ch[car]);
  2999.            tcharptr->where.address.fileOffset = pkloc;
  3000.            /* set pkloc to end_of_packet */
  3001.            pkloc += packet_length + 8;
  3002.  
  3003.            tcharptr->tfmw = (long) NoSignExtend(pxlfp, 4);
  3004.            (void) NoSignExtend(pxlfp, 4); /* horesc not used */
  3005.            (void) NoSignExtend(pxlfp, 4); /* not used */
  3006.  
  3007.            tcharptr ->width   = (unsigned short) NoSignExtend(pxlfp, 4);
  3008.            tcharptr ->height  = (unsigned short) NoSignExtend(pxlfp, 4);
  3009.            tcharptr ->xOffset = (short) SignExtend(pxlfp, 4);
  3010.            tcharptr ->yOffset = (short) SignExtend(pxlfp, 4);
  3011.            tcharptr ->where.isloaded = FALSE;
  3012.         } else if (flag_byte & 4) {
  3013.             /* fprintf(stderr,"Read extended short character preamble\n"); */
  3014.  
  3015.             packet_length = ((long) flag_byte & 3) * 65536l +
  3016.                 (unsigned short) NoSignExtend(pxlfp, 2);
  3017.             if ((car = (int)NoSignExtend(pxlfp, 1)) > (LASTFNTCHAR))
  3018.                 Fatal("Bad character (%d) in PK-File\n",(int)car) ;
  3019.  
  3020.             tcharptr = &(tfontptr->ch[car]);
  3021.             tcharptr->where.address.fileOffset = pkloc;
  3022.             /* set pkloc to end_of_packet */
  3023.             pkloc += packet_length + 3;
  3024.  
  3025.             tcharptr->tfmw = (long) NoSignExtend(pxlfp, 3);
  3026. /*
  3027.             { register unsigned short t;
  3028.               t = (unsigned short) NoSignExtend(pxlfp, 1);
  3029.               tcharptr->tfmw = t * 65536l +
  3030.               (unsigned short) NoSignExtend(pxlfp, 2);
  3031.             }
  3032. */
  3033.             /* horesc not used */
  3034.             (void) NoSignExtend(pxlfp, 2) ;
  3035.             tcharptr ->width   = (unsigned short) NoSignExtend(pxlfp,2);
  3036.             tcharptr ->height  = (unsigned short) NoSignExtend(pxlfp,2);
  3037.             tcharptr ->xOffset = (short) SignExtend(pxlfp, 2);
  3038.             tcharptr ->yOffset = (short) SignExtend(pxlfp, 2);
  3039.             tcharptr ->where.isloaded = FALSE;
  3040.         } else {
  3041.             /* fprintf(stderr,"<Read short character preamble@>\n"); */
  3042.  
  3043.             packet_length = ((long)flag_byte & 3) * 256 +
  3044.                 NoSignExtend(pxlfp, 1) ;
  3045.             if ((car = (int)NoSignExtend(pxlfp, 1)) > (LASTFNTCHAR))
  3046.                 Fatal("Bad character (%d) in PK-File\n",(int)car) ;
  3047.  
  3048.             tcharptr = &(tfontptr->ch[car]);
  3049.             tcharptr->where.address.fileOffset = pkloc;
  3050.             /* set pkloc to end_of_packet */
  3051.             pkloc += packet_length + 2 ;
  3052.  
  3053.             tcharptr->tfmw = (long) NoSignExtend(pxlfp, 3);
  3054. /*
  3055.             { register unsigned short t;
  3056.               t = (unsigned short) NoSignExtend(pxlfp, 1);
  3057.               tcharptr->tfmw = t * 65536l +
  3058.               (unsigned short) NoSignExtend(pxlfp, 2);
  3059.             }
  3060. */
  3061.             /* horesc not used */
  3062.             (void) NoSignExtend(pxlfp, 1) ;
  3063.             tcharptr ->width   = (unsigned short) NoSignExtend(pxlfp,1);
  3064.             tcharptr ->height  = (unsigned short) NoSignExtend(pxlfp,1);
  3065.             tcharptr ->xOffset = (short) SignExtend(pxlfp, 1);
  3066.             tcharptr ->yOffset = (short) SignExtend(pxlfp, 1);
  3067.             tcharptr ->where.isloaded = FALSE;
  3068.         }
  3069.  
  3070.         tcharptr->tfmw = (long)
  3071.            ( tcharptr->tfmw * (double)tfontptr->s / (double) 0x100000 );
  3072.  
  3073.         tcharptr->cw = (long)(((double)tcharptr->tfmw /
  3074.             (double)hconv) + 0.5);
  3075.  
  3076.         if (tcharptr->width  > CHAR_WIDTH_LARGE  ||
  3077.             tcharptr->height > CHAR_HEIGTH_LARGE )
  3078.             tcharptr->charsize = LARGE_SIZE;
  3079.         else
  3080.             tcharptr->charsize = SMALL_SIZE;
  3081.  
  3082. #ifdef LJ
  3083. /*
  3084. printf("char=%d: this=%d, max_width=%d, this=%d,max_height=%d, this=%d,max_yoff=%d\n",
  3085.        car, tcharptr->width, tfontptr->max_width,
  3086.        tcharptr->height,tfontptr->max_height, 
  3087.        tcharptr->yOffset,tfontptr->max_yoff);
  3088. */
  3089.         max(tfontptr->max_width, tcharptr->width);
  3090.         max(tfontptr->max_height,tcharptr->height);
  3091.         if (tcharptr->yOffset > 0  && (int)tfontptr->max_yoff < (int)tcharptr->yOffset)
  3092.           tfontptr->max_yoff = tcharptr->yOffset;
  3093.  
  3094.         if ((depth = tcharptr->height - tcharptr->yOffset) > max_depth)
  3095.           max_depth = depth;
  3096. #endif
  3097. /*
  3098. fprintf(stderr,"char=%d, yotcharptr=%lx, flag_byte=%d, font=%lx\n",car, tcharptr,flag_byte,tfontptr);
  3099. */
  3100.         tcharptr->flag_byte = flag_byte;
  3101.         fseek(pxlfp, (long) pkloc, 0);
  3102.         flag_byte = skip_specials(&pkloc);
  3103.  
  3104.         } /* end of while */
  3105. #ifdef LJ
  3106. tfontptr->max_height = max_depth ? tfontptr->max_yoff+max_depth :
  3107.                                    tfontptr->max_yoff+1;
  3108. #endif
  3109.  
  3110. /*
  3111. printf("fontid=%d: max_width=%u, max_height=%d, max_yoff=%u\n",
  3112.         tfontptr->plusid, tfontptr->max_width,
  3113.         tfontptr->max_height, tfontptr->max_yoff);
  3114. */
  3115.  
  3116. #else
  3117.     if ( pxlfp == NO_FILE )        /* allow missing pxl files */
  3118.     return;
  3119.  
  3120.     gfin = pxlfp;
  3121.     seekpost();
  3122.     readpost();
  3123.     if ((tfontptr->c != 0) && (checksum != 0) && (tfontptr->c != checksum))
  3124.     Warning("font = \"%s\",\n-->font checksum = %d,\n-->dvi checksum = %d",
  3125.         tfontptr->name, tfontptr->c, checksum);
  3126.  
  3127.     for(i=FIRSTFNTCHAR; i<=LASTFNTCHAR; i++) {
  3128.     if (char_exists[i]) {
  3129.         tcharptr = &(tfontptr->ch[i]);
  3130.         tcharptr->tfmw = (long)(((float)tfm_wd[i]*(float)tfontptr->s) /
  3131.            (float)((long)1l<<20));
  3132.         tcharptr->where.address.fileOffset = char_pointer[i];
  3133.       }
  3134. #ifdef LJ
  3135. /*                 GF USER PLEASE CHECK IF THIS CODE WORKS
  3136.     tfontptr->max_width = gf_font_max_m;
  3137.     tfontptr->max_height = gf_font_max_n;
  3138.     tfontptr->max_yoff = gf_font_min_n;
  3139. */
  3140. #endif
  3141. #endif
  3142. /*****************************************************************************/
  3143. /*if (tcharptr->charsize==LARGE_SIZE)                                        
  3144.      printf("%d:\t <%c> w=%d h=%d xO=%d yO=%d tfmw=%ld cw=%ld %d\n",       
  3145.      i,(char) i,                                                          
  3146.      tcharptr->width,tcharptr->height,tcharptr->xOffset,tcharptr->yOffset,
  3147.      tcharptr->tfmw, tcharptr->cw, (int)(tcharptr->charsize));           
  3148.  */
  3149. /*****************************************************************************/
  3150.     }
  3151.   }
  3152.  
  3153.  
  3154. unsigned char
  3155. skip_specials( pkloc )
  3156. long    *pkloc;
  3157. {
  3158.     long    i, j;
  3159.     register unsigned char  flag_byte;
  3160.     do {
  3161.     flag_byte = (unsigned char) NoSignExtend(pxlfp, 1);
  3162. /*
  3163. fprintf(stderr,"flagbyte = %d, pkloc=%ld\n",(int)flag_byte,*pkloc);
  3164. */
  3165.  
  3166.     (*pkloc) ++;
  3167.     if (flag_byte  >= 240)
  3168.         switch (flag_byte) {
  3169.         case 240:
  3170.         case 241:
  3171.         case 242:
  3172.         case 243 : {
  3173.             i = 0 ;
  3174.             for (j = 240; j <= (long)flag_byte; j++) {
  3175.                 i = 256 * i + NoSignExtend(pxlfp, 1) ;
  3176.                 (*pkloc) ++;
  3177.             }
  3178.             for (j = 1; j <= i; j++) {
  3179.                 (void) NoSignExtend(pxlfp, 1) ;
  3180.                 (*pkloc) ++;
  3181.             }
  3182.             break;
  3183.         }
  3184.         case 244 : {
  3185.             i = NoSignExtend(pxlfp, 4);
  3186.             (*pkloc) += 4;
  3187.             break;
  3188.         }
  3189.         case 245 :
  3190.             break;
  3191.         case 246 :
  3192.             break ;
  3193.         case 247:
  3194.         case 248:
  3195.         case 249:
  3196.         case 250:
  3197.         case 251:
  3198.         case 252:
  3199.         case 253:
  3200.         case 254:
  3201.         case 255: {
  3202.             Fatal("Unexpected flagbyte %d!\n",
  3203.                  (int)flag_byte) ;
  3204.             }
  3205.         }
  3206.     } while (!((flag_byte < 240) || (flag_byte == PK_POST))) ;
  3207.     return(flag_byte);
  3208. }
  3209.  
  3210.  
  3211. /*-->ReadPostAmble*/
  3212. /**********************************************************************/
  3213. /**************************  ReadPostAmble  ***************************/
  3214. /**********************************************************************/
  3215. /***********************************************************************
  3216.     This  routine  is  used  to  read  in  the  postamble  values.    It
  3217.     initializes the magnification and checks  the stack height prior  to
  3218.     starting printing the document.
  3219. ***********************************************************************/
  3220. void
  3221. ReadPostAmble(load)
  3222. bool load;
  3223. {
  3224.     FindPostAmblePtr (&postambleptr);
  3225.     if (NoSignExtend(dvifp, 1) != POST)
  3226.         Fatal ("POST missing at head of postamble");
  3227. #ifdef DEBUG
  3228.     if (Debug)
  3229.         fprintf(stderr,"got POST command\n");
  3230. #endif
  3231.     ppagep = NoSignExtend(dvifp, 4);
  3232.     num = NoSignExtend(dvifp, 4);
  3233.     den = NoSignExtend(dvifp, 4);
  3234.     mag = NoSignExtend(dvifp, 4);
  3235.     if ( usermag > 0 && usermag != mag )
  3236.         Warning("DVI magnification of %ld over-ridden by user (%ld)",
  3237.                      mag, usermag );
  3238.     if ( usermag > 0 )
  3239.         mag = usermag;
  3240.     hconv = DoConv(num, den, hconvRESOLUTION);
  3241.     vconv = DoConv(num, den, vconvRESOLUTION);
  3242.     (void) NoSignExtend(dvifp, 4);   /* height-plus-depth of tallest page */
  3243.     (void) NoSignExtend(dvifp, 4);   /* width of widest page */
  3244.     if (NoSignExtend(dvifp, 2) >= STACK_SIZE)
  3245.         Fatal ("Stack size is too small");
  3246.     (void) NoSignExtend(dvifp, 2);   /* this reads the number of pages in */
  3247.                      /* the DVI file */
  3248. #ifdef DEBUG
  3249.     if (Debug)
  3250.         fprintf(stderr,"now reading font defs");
  3251. #endif
  3252.     if (load)
  3253.         GetFontDef ();
  3254. }
  3255.  
  3256.  
  3257. /*-->LoadAChar*/
  3258. /**********************************************************************/
  3259. /***************************** LoadAChar ******************************/
  3260. /**********************************************************************/
  3261. void
  3262. LoadAChar(c, ptr)
  3263. long    c;
  3264. register struct char_entry *ptr;
  3265. {
  3266.     long    *pr;
  3267.     long    bytes;
  3268.  
  3269.     if (ptr->where.address.fileOffset == NONEXISTANT) {
  3270.         ptr->where.isloaded = FALSE;
  3271.         return;
  3272.     }
  3273.  
  3274.     OpenFontFile();
  3275.  
  3276. #ifdef DEBUG
  3277.     if (Debug)
  3278.       fprintf(stderr, "LoadAChar: <%c>(%ld) from file at pos %ld\n",
  3279.           (char)c,c,ptr->where.address.fileOffset);
  3280. #endif
  3281.  
  3282. #ifdef USEPXL
  3283.  
  3284.     fseek(pxlfp, ptr->where.address.fileOffset, 0);
  3285.  
  3286.     if (fontptr->id == pk89) {
  3287. #ifdef PARANOIA
  3288.         unsigned char   temp;
  3289.         temp = (unsigned char) NoSignExtend(pxlfp, 1);
  3290.  
  3291.         if ((int)(ptr->flag_byte) != (int)temp) {
  3292.                fprintf(stderr,"font=%lx, ptr=%lx\n",fontptr,ptr);
  3293.                 Fatal("%d: oh boy! old flag %d, new flag %d, ptr=%lx\n",
  3294.                           (int)c,(int)(ptr->flag_byte),(int)temp,ptr);
  3295.             }
  3296. #endif
  3297.  
  3298.         if ((ptr->flag_byte & 7) == 7) {
  3299.             bytes = ((long) NoSignExtend(pxlfp, 4)) - 28;
  3300.             fseek(pxlfp, ptr->where.address.fileOffset + 36, 0);
  3301. /*
  3302. fprintf(stderr,"bytes=%d, seeking at %ld\n",
  3303.             bytes, ptr->where.address.fileOffset + 36);
  3304. */
  3305.         } else if ((ptr->flag_byte & 4) == 4) {
  3306.             bytes = ((long)ptr->flag_byte & 3)
  3307.                 * 65536l + NoSignExtend(pxlfp, 2) - 13;
  3308.             fseek(pxlfp, ptr->where.address.fileOffset + 16, 0);
  3309.         } else {
  3310.             bytes = ((long)ptr->flag_byte & 3)
  3311.                 * 256 + NoSignExtend(pxlfp, 1) - 8;
  3312.             fseek(pxlfp, ptr->where.address.fileOffset + 10, 0);
  3313.         }
  3314.     } else if (fontptr->id == id1002)
  3315.         bytes =  ((( (long)ptr->width + 7) >> 3) * (long) ptr->height);
  3316.     else if (fontptr->id == id1001)
  3317.         bytes =  4 * (((long)ptr->width + 31) >> 5) * (long)ptr->height;
  3318.  
  3319.     if (bytes > 0) {
  3320.                                           /* do NOT load Huge characters */
  3321.       if ((bytes > HUGE_CHAR_PATTERN) && (fontptr->id != pk89)) {
  3322.         qfprintf(stderr,"Huge Character <%c> (%ld Bytes)\n", (char)c, bytes);
  3323.         ptr->charsize = HUGE_SIZE;
  3324.         ptr->where.isloaded = FALSE;
  3325.       } else {
  3326.         if ( (pr = (long *)malloc( bytes )) == NULL )
  3327.             Fatal("Unable to allocate %ld bytes for char <%c>\n",
  3328.                          bytes, (char)c);
  3329. /*
  3330.  * else fprintf(stderr,"allocating %ld bytes char <%c>(%d)\t at 0x%lx\n",
  3331.  *                       bytes, (char)c,(int)c,pr);
  3332.  */ 
  3333. #ifdef DEBUG
  3334.         if (Debug)
  3335.           fprintf(stderr,
  3336.            "Allocating Char <%c>, FileOffset=%lX, Bytes=%ld (%d) <%d>\n",
  3337.               (char) c, ptr->where.address.fileOffset, bytes,
  3338.               (int)bytes, (unsigned int)bytes);
  3339. #endif
  3340.         allocated_storage += bytes;
  3341.         fread(pr, 1, (int) bytes , pxlfp);
  3342.         ptr->where.address.pixptr = pr;
  3343.       }
  3344.     } 
  3345. #else
  3346.     fseek(gfin, ptr->where.address.fileOffset, 0);
  3347.     gettochar();
  3348.     readbits();
  3349.     if (num_bytes > HUGE_CHAR_PATTERN)
  3350.       ptr->charsize = HUGE_SIZE;
  3351. #endif
  3352.     ptr->where.isloaded = TRUE; 
  3353.     if (ptr->charsize != SMALL_SIZE
  3354. #ifdef LJ
  3355.         /* we might have problems at the edge of the paper with diff. sized characters
  3356.          * the correct treatment would be to check whether the bounding box of 
  3357.          * tfontptr is within the paper relative to the current position  
  3358.          */
  3359.         || fontptr->max_height > CHAR_HEIGTH_LARGE  
  3360.         || (rasterfont[fontptr->plusid])
  3361. #endif
  3362.        )
  3363.         return;
  3364.  
  3365.     EmitChar(c, ptr);
  3366. #ifdef USEPXL
  3367.     /* we should really free the space used by the PXL data after this
  3368.        point, but it is not large, and besides, we may want to be
  3369.        more clever in the future, about sending bitmaps.  So keep
  3370.        the data around */
  3371. #endif
  3372. }
  3373. /*-->SetChar*/
  3374. /**********************************************************************/
  3375. /*****************************  SetChar  ******************************/
  3376. /**********************************************************************/
  3377. void
  3378. SetChar(c, command, PassNo, do_posn,in_string)
  3379. long    c;
  3380. short   command;
  3381. int     PassNo;
  3382. bool do_posn,in_string;
  3383. {
  3384.     register struct char_entry *ptr;  /* temporary char_entry pointer */
  3385.     bool pos_after = FALSE;
  3386.  
  3387.     ptr = &(fontptr->ch[c]);
  3388.     if (!((ptr->where.isloaded) || (ptr->charsize == HUGE_SIZE)))
  3389.         LoadAChar(c, ptr);
  3390.     if (PassNo == 0)
  3391.         return;
  3392.  
  3393.     if (do_posn) {
  3394. #ifdef IBM3812
  3395.         if (CharStringPos>0) {
  3396.             fprintf(stderr,"!!!! That should never happen!!!\n");
  3397.             CharStringOut;
  3398.         }
  3399. #endif
  3400.         SetPosn(h, v);
  3401.     }
  3402.  
  3403. /*
  3404. printf("(%d) hh=%ld (+%ld/+%ld), h=%ld, xh=%ld,xhh=%ld, [%ld|%ld] ->%d\n",
  3405.     (int)do_posn,hh,(long)ptr->cw,(long)ptr->cw*(long)hconv,h,
  3406.     PIXROUND(h, hconv),
  3407.     PIXROUND(hh, hconv),
  3408.     labs((hh-h)),hconv,(labs((hh-h))>hconv)
  3409.     );
  3410. */
  3411.  
  3412.     if (in_string && (labs((hh-h))>hconv)) {
  3413. #ifdef IBM3812
  3414.         CharStringOut;
  3415. #endif
  3416.         SetPosn(h, v);
  3417.     }
  3418.  
  3419. /*
  3420. fprintf(stderr,"raster?=%d - last_ry=%d, last_rx=%d,mmax-height=%d\n",
  3421.         (int)last_ry < fontptr->max_height, (int)last_ry,(int)last_rx,
  3422.         (int)fontptr->max_height);
  3423. */
  3424.  
  3425.     if (fontptr->font_file_id != NO_FILE) {      /* ignore missing fonts */
  3426.         if (ptr->charsize != SMALL_SIZE 
  3427. #ifdef LJ
  3428.         /* the LaserJet cannot printcahracters where the bounding box lies outside the 
  3429.           *  paper edge. Missing: right paper edge
  3430.           */
  3431.             || last_ry < (int)fontptr->max_height
  3432.             || fontptr->max_height > CHAR_HEIGTH_LARGE
  3433.             || (rasterfont[fontptr->plusid])
  3434. #endif
  3435.             ) {
  3436.           int     tmp;
  3437.           char    sign;
  3438.  
  3439. #ifdef LJ
  3440.             if (!do_posn) {
  3441.                 SetPosn(h, v);
  3442.               }
  3443. #ifdef USEPXL
  3444.             tmp = (int) -ptr->yOffset;
  3445. #else
  3446.             tmp = (int) num_rows-y_offset;
  3447. #endif
  3448.             if (tmp != 0) {
  3449.                if (tmp < 0) {
  3450.                    sign = '-'; tmp = -tmp;
  3451.                } else
  3452.                    sign = '+';
  3453.                EMIT(outfp, "\033*p%c%dY", sign, tmp);
  3454.              }
  3455. #ifdef USEPXL
  3456.             tmp = (int) -ptr->xOffset;
  3457. #else
  3458.             tmp = (int) -x_offset;
  3459. #endif
  3460.             if (tmp != 0) {
  3461.                if (tmp < 0) {
  3462.                    sign = '-'; tmp = -tmp;
  3463.                } else
  3464.                    sign = '+';
  3465.                EMIT(outfp, "\033*p%c%dX", sign, tmp);
  3466.              }
  3467. #endif
  3468. #ifdef IBM3812
  3469.             CharStringOut;
  3470. #endif
  3471. #ifdef DEBUG
  3472.     if (Debug)
  3473. #ifndef vms
  3474.         fprintf(stderr,"Raster character <%c> %hd\n", (char) c,(short)c);
  3475. #else
  3476.         fprintf(stderr,"Raster character <%c> %d\n", (char) c,(short)c);
  3477. #endif
  3478. #endif
  3479.             RasterChar(ptr);
  3480.             pos_after = TRUE;
  3481.         } else {
  3482.             unsigned char cc;
  3483.             cc = VisChar((char)c);
  3484. #ifdef IBM3812
  3485. #ifdef USEPXL
  3486.             if ( ptr->yyOffset || (!in_string) ) {
  3487.                 CharStringOut;
  3488.                 MoveVert(ptr->yyOffset);
  3489.                 sprintf(PMPformat, "\01%c", cc);
  3490.                 PMPout(2, PMPformat);
  3491.                 MoveVert((int)-(ptr->yyOffset));
  3492.             } else {
  3493. #endif
  3494.                 if (CharStringPos==CHARSTRINGMAX)
  3495.                     CharStringOut;
  3496.  
  3497.                 CharString[CharStringPos] = cc;
  3498.                 CharStringPos++;
  3499. #ifdef USEPXL
  3500.             }
  3501. #endif
  3502. #endif
  3503. #ifdef LJ
  3504. #define TRANSPARENTCHAR(ch) \
  3505.             if ((ch == 0l) || (ch >= 7l && ch <= 15l) || (ch == 27l)) \
  3506.                 EMIT(outfp, "\033&p1X%c", (unsigned char)ch); \
  3507.             else EMITC((unsigned char)ch)
  3508. #ifdef USEPXL
  3509.             if (ptr->yyOffset) {
  3510. #ifndef vms
  3511.                 EMIT(outfp, "\033*p+%hdY", ptr->yyOffset);
  3512.                 TRANSPARENTCHAR(cc);
  3513.                 EMIT(outfp, "\033*p-%hdY", ptr->yyOffset);     /* GUGUGU 255 */
  3514. #else
  3515.                 EMIT(outfp, "\033*p+%dY", ptr->yyOffset);
  3516.                 TRANSPARENTCHAR(cc);
  3517.                 EMIT(outfp, "\033*p-%dY", ptr->yyOffset);     /* GUGUGU 255 */
  3518. #endif
  3519.             } else
  3520. #endif
  3521. /*                EMITC( (unsigned char)c);*/
  3522.                { TRANSPARENTCHAR(cc);}
  3523. #endif
  3524.       }
  3525.         hh += (long) ptr->cw*hconv;
  3526.     }
  3527.     if (command <= SET4)
  3528.         h += ptr->tfmw;
  3529.     if (pos_after) {
  3530.         SetPosn(h, v);
  3531.       }
  3532. }
  3533.  
  3534.  
  3535. void
  3536. DoBop()
  3537. {
  3538.     struct font_entry *p;
  3539. #ifdef LJ
  3540.     register short i;
  3541.     if (fonts_used_on_this_page > MAX_FONTS_PER_PAGE) {
  3542.        for (i = 0; i < HANDLE_MAX_FONTS; i++)
  3543.           rasterfont[i] = FALSE;
  3544.     }
  3545.     fonts_used_on_this_page = 0;
  3546. #endif
  3547.     for (p = hfontptr; p; p = p->next) {
  3548.         p->used_on_this_page = FALSE;
  3549.     }
  3550. }
  3551.  
  3552.  
  3553. /*-->SetFntNum*/
  3554. /**********************************************************************/
  3555. /****************************  SetFntNum  *****************************/
  3556. /**********************************************************************/
  3557. void
  3558. SetFntNum(k, Emitting)
  3559. long    k;
  3560. bool Emitting;
  3561. /*  this routine is used to specify the font to be used in printing future
  3562.     characters */
  3563. {
  3564. #ifdef LJ
  3565.     static unsigned short plusid = 0;
  3566. #endif
  3567.     fontptr = hfontptr;
  3568.     while ((fontptr != NULL) && (fontptr->k != k))
  3569.         fontptr = fontptr->next;
  3570.     if (fontptr == NULL)
  3571.         Fatal("font %ld undefined", k);
  3572.     if (Emitting && (fontptr->font_file_id != NO_FILE) ) {
  3573.         if (!fontptr->used_on_this_page) {
  3574.             fontptr->used_on_this_page = TRUE;
  3575. #ifdef LJ
  3576.             if (++fonts_used_on_this_page > MAX_FONTS_PER_PAGE) {
  3577.               qfprintf(stderr,"this is the %d. font on this page!",
  3578.                        fonts_used_on_this_page);
  3579.               qfprintf(stderr," (max = %d) rastering characters!\n",
  3580.                        MAX_FONTS_PER_PAGE);
  3581.                rasterfont[fontptr->plusid] = TRUE;
  3582.             }
  3583. #endif
  3584.         }
  3585.  
  3586.         /* activate font */
  3587. #ifdef IBM3812
  3588.         sprintf(PMPformat, "\323%c", (unsigned char)fontptr->plusid);
  3589.         PMPout(2, PMPformat);
  3590. #endif
  3591. #ifdef LJ
  3592.         if (!rasterfont[fontptr->plusid]) {
  3593.             if (fontptr->plusid>0) EMIT(outfp, "\033(%dX", fontptr->plusid);
  3594.             else                   EMIT(outfp, "\033(X");
  3595.         }
  3596. /* else printf("I am doing rasterfont for plusid=%d instead\n",
  3597.                 fontptr->plusid);
  3598. */
  3599. #endif
  3600.     }
  3601. #ifdef LJ    /* reassignment of printer font id  0.48 */
  3602.     else if (fontptr->font_file_id != NO_FILE) {
  3603.             if (fontptr->ncdl == 0) {
  3604. #ifdef DEBUG
  3605.       if (Debug)
  3606.         printf("Changing plusid from %d to %d\n", fontptr->plusid, (int)plusid);
  3607. #endif
  3608.                 fontptr -> plusid = plusid;
  3609.                 plusid ++;
  3610.             }
  3611.     }
  3612. #endif
  3613. }
  3614.  
  3615.  
  3616. /*-->SetPosn*/
  3617. /**********************************************************************/
  3618. /*****************************  SetPosn  ******************************/
  3619. /**********************************************************************/
  3620. void                  /* output a positioning command */
  3621. SetPosn(x, y)
  3622. long    x, y;
  3623. {
  3624.     int     rx, ry;
  3625.     rx = (int)PIXROUND(x, hconv) + x_goffset;
  3626.     ry = (int)PIXROUND(y, vconv) + y_goffset;
  3627.  
  3628. /*
  3629. * fprintf(stderr,"setposn to %ld/%ld, %d/%d\n",x,y,rx,ry);
  3630. */
  3631.  
  3632. #ifdef IBM3812
  3633.     PMPcont(3);
  3634.     PMPoutC('\340');
  3635.     EMITWORD(LARGER(rx,0));
  3636.  
  3637.     if (last_ry != ry) { /* necessary to set new y-position */
  3638.         PMPcont(3);
  3639.         PMPoutC('\341');
  3640.         EMITWORD(LARGER(ry,0));
  3641.     }
  3642. #endif
  3643. #ifdef LJ
  3644.     if (last_ry != ry)   /* necessary to set new y-position */
  3645.         EMIT(outfp, "\033*p%dx%dY", LARGER(rx,0), LARGER(ry,0));
  3646.     else
  3647.         EMIT(outfp, "\033*p%dX", LARGER(rx,0));
  3648. #endif
  3649.  
  3650.     last_ry = ry;    /* last y-position on output device */
  3651.     last_rx = rx;    /* last x-position on output device */
  3652. /*
  3653.  * must know where device "really" is horizontally, for rel. posning.
  3654.  * (maybe in the future), but we always use direct positioning for
  3655.  * vertical movement.
  3656.  */
  3657.     /* hh = rx * hconv; */
  3658.     hh = x;
  3659.     vv = y;
  3660. /*
  3661.  *     fprintf(stderr,"DoPosn: x=%ld, y=%ld, rx=%d, ry=%d, hh=%ld, vv=%ld\n",
  3662.  *               x,y,rx,ry,hh,vv);
  3663.  */
  3664. }
  3665.  
  3666.  
  3667. #ifdef IBM3812
  3668. /*-->PMPLine*/
  3669. /**********************************************************************/
  3670. /*****************************  PMPLine  ******************************/
  3671. /**********************************************************************/
  3672. void       /* drawing lines on the 3812 using PMP vector commands */
  3673. PMPLine(w, y, x)
  3674. int     w, y, x;
  3675. {
  3676.  
  3677.     if ((w == 0) || ((x == 0) && (y == 0)))
  3678.         return;
  3679.  
  3680. /*
  3681. fprintf(stderr,"w=%d / %d - %d, y=%d / %d - %d, x=%d / %d - %d\n",
  3682.         w,(char)(w & 0xff),(int)((signed_char)(w & 0xff)),
  3683.         y,(char)(y & 0xff),(int)((signed_char)(y & 0xff)),
  3684.         x,(char)(x & 0xff),(int)((signed_char)(x & 0xff)));
  3685. */
  3686.  
  3687.     if ( (((signed_char)(x & 0xff)) == x ) &&
  3688.         ( ((signed_char)(y & 0xff)) == y ) ) {
  3689.         PMPcont(6);
  3690.         PMPout(1, "\370");
  3691.         EMITWORD(3);      /* length of vector */
  3692.         PMPoutC((unsigned char)(0x80 | 0x00 | (unsigned char) w));
  3693.         PMPoutC((signed_char)(y & 0xff));
  3694.         PMPoutC((signed_char)(x & 0xff));
  3695. /*
  3696.         fprintf(stderr,"F8 00 03: w=%d, x=%d(%d-%.2X), y=%d(%d-%.2X),\n",
  3697.         w,x,(char)(x & 0xff),(signed_char)(x & 0xff),
  3698.           y,(char)(y & 0xff),(signed_char)(y & 0xff));
  3699. */
  3700.  
  3701.     } else {
  3702.         PMPcont(8);
  3703.         PMPout(1, "\370");
  3704.         EMITWORD(4 + 1);      /* length of vector */
  3705.         PMPoutC((unsigned char)(0xC0 | 0x00 | (unsigned char) w));
  3706.         EMITWORD(y);
  3707.         EMITWORD(x);
  3708. /*
  3709.         fprintf(stderr,"F8 00 05: w=%d, x=%d, y=%d,\n", w,x,y);
  3710. */
  3711.     }
  3712. }
  3713.  
  3714.  
  3715. #endif
  3716. /*-->SetRule*/
  3717. /**********************************************************************/
  3718. /*****************************  SetRule  ******************************/
  3719. /**********************************************************************/
  3720. void                   /*   this routine will draw a rule */
  3721. SetRule(a, b, Set)
  3722. long    a, b;
  3723. int     Set;
  3724. {
  3725.     long    xx, yy;
  3726. #ifdef IBM3812
  3727.     short   hor_offset, vert_offset, ll;
  3728. #endif
  3729.     if ( a > 0 && b > 0 ) {
  3730.         SetPosn(h, v);             /* lower left corner */
  3731.         xx = (long)PIXROUND(b, hconv);     /* width */
  3732.         yy = (long)PIXROUND(a, vconv);     /* height */
  3733.  
  3734. #ifdef DEBUG
  3735.         if (Debug)
  3736.             fprintf(stderr,"Rule xx=%ld, yy=%ld\n", xx, yy);
  3737. #endif
  3738.  
  3739. #ifdef IBM3812
  3740.         hor_offset  = (short)(last_ry - yy);
  3741.         if (hor_offset < 0) yy += hor_offset;
  3742.         if (last_rx < 0) xx += last_rx;
  3743.  
  3744.         if (Landscape) {
  3745.           if (last_ry > MAX_PAGE_WIDTH) yy += MAX_PAGE_WIDTH-last_ry;
  3746.           hor_offset  = (short)(MAX_PAGE_HEIGHT - (last_rx + xx));
  3747.         } else {
  3748.           if (last_ry > MAX_PAGE_HEIGHT) yy += MAX_PAGE_HEIGHT-last_ry;
  3749.           hor_offset  = (short)(MAX_PAGE_WIDTH - (last_rx + xx));
  3750.         }
  3751.         if (hor_offset < 0) xx += hor_offset;
  3752.  
  3753.         if ((xx > 31) && (yy > 31)) {
  3754. /*
  3755.  *   fill area by multiple lines  (kind of a mess)
  3756.  *   process for simplicity always horizontally
  3757.  */
  3758.  
  3759. /* printf("large box: w=%d, x=%d, y=%d\n",(int)yy,(int)xx,0);*/
  3760.  
  3761.             hor_offset  = HOR_HALF(30);
  3762.             MoveHor(hor_offset);
  3763.             vert_offset = VERT_HALF(30);
  3764.             MoveVert(-vert_offset);
  3765.             ll = (short)xx - 30;
  3766.  
  3767.             for (; yy > 30; yy -= 30) {
  3768.                 PMPLine(30, 0, ll);
  3769.                 MoveHor(-ll);
  3770.                 MoveVert(-30);
  3771.             }
  3772.  
  3773.             hor_offset  = -hor_offset     + HOR_HALF(yy);
  3774.             MoveHor(hor_offset);
  3775.             vert_offset = (vert_offset - 30) + VERT_HALF(yy);
  3776.             MoveVert(-vert_offset);
  3777.  
  3778.             PMPLine((int)yy, 0, (int)(xx - yy));
  3779.  
  3780.         } else if ( (yy < xx) && (xx > 0) ) {
  3781.  
  3782. /* printf("hori rule: w=%d, x=%d, y=%d\n",(int)yy,(int)(xx-yy),0);*/
  3783.  
  3784.             hor_offset  = HOR_HALF(yy);
  3785.             vert_offset = VERT_HALF(yy);
  3786.  
  3787.             MoveHor(hor_offset);
  3788.             MoveVert(-vert_offset);
  3789.  
  3790.             PMPLine((int)yy, 0, (int)(xx - yy));
  3791.         } else if ( (xx < yy) && (yy > 0)) {
  3792.  
  3793.             hor_offset  = HOR_HALF(xx);
  3794.             vert_offset = VERT_HALF(xx);
  3795. /*
  3796.  printf("move: x=%d, y=%d\n",hor_offset,-vert_offset);
  3797.  printf("vert rule: w=%d, x=%d, y=%d\n",(int)xx,0,(int)-(yy-xx));
  3798. */
  3799.             MoveHor(hor_offset);
  3800.             MoveVert(-vert_offset);
  3801.  
  3802.             PMPLine((int)xx, (int)-(yy - xx), 0);
  3803.         } else if (xx == yy) {
  3804.             short     y0;  /* small square box!! */
  3805.  
  3806.             y0 = (short)yy / 2;
  3807.             hor_offset  = HOR_HALF(y0);
  3808.             MoveHor(hor_offset);
  3809.             vert_offset = VERT_HALF(y0);
  3810.             MoveVert(-vert_offset);
  3811.             ll = (short)xx - y0;
  3812.  
  3813.             PMPLine((int)y0, 0, ll);
  3814.  
  3815.             hor_offset  = -(ll + hor_offset);
  3816.             vert_offset = (y0 - vert_offset);
  3817.  
  3818.             yy -= (long)y0;
  3819.             hor_offset  += HOR_HALF(yy);
  3820.             MoveHor(hor_offset);
  3821.             vert_offset += VERT_HALF(yy);
  3822.             MoveVert(-vert_offset);
  3823.  
  3824.             PMPLine((int)yy, 0, (int)xx - yy);
  3825.         }
  3826. #endif
  3827. #ifdef LJ
  3828.         if (last_ry + 1 < yy) yy = last_ry + 1;
  3829.         if (last_rx < 0) xx += last_rx;
  3830.  
  3831.         if (((int)pgsiz_dots >0) && ((int)last_ry > (int)pgsiz_dots))
  3832.           yy += (long)pgsiz_dots - (long)last_ry;
  3833.  
  3834.         if ((yy>0) && (xx>0))
  3835.                 EMIT(outfp, "\033*p-%ldY\033*c%lda%ldbP", yy - 1, xx, yy);
  3836. #endif
  3837.         last_ry = UNKNOWN;       /* next time full positioning */
  3838.     }
  3839.     if (Set)
  3840.         h += b;
  3841. }
  3842.  
  3843.  
  3844. /*-->SetString*/
  3845. /**********************************************************************/
  3846. /*****************************  SetString  ****************************/
  3847. /**********************************************************************/
  3848. void
  3849. SetString(firstch, PassNo)    /* read and set a consecutive string of chars */
  3850. short   firstch;
  3851. int     PassNo;
  3852. {
  3853.     short   c;
  3854.     register unsigned short i;
  3855.  
  3856. #ifdef DEBUG
  3857.     if (Debug)
  3858.       fprintf(stderr, "SetString ");
  3859. #endif
  3860.     for (i = 0, c = firstch; c >= SETC_000 && c <= SETC_127; i++) {
  3861. #ifdef DEBUG
  3862.         if (Debug)
  3863.           fprintf (stderr, "%d ", c);
  3864. #endif
  3865.         SetChar((long)c,  c, PassNo, (bool)(i==0),TRUE);
  3866.         c = (short) NoSignExtend(dvifp, 1);
  3867.     }
  3868.     fseek(dvifp, -1l, 1);    /* backup one character */
  3869. #ifdef IBM3812
  3870.     CharStringOut;
  3871. #endif
  3872. #ifdef DEBUG
  3873.     if (Debug)
  3874.       fprintf(stderr, "...SetString\n");
  3875. #endif
  3876. }
  3877.  
  3878. #ifndef ARITHMETIC_RIGHT_SHIFT
  3879. long      signTab[5] = {0,0x00000080,0x00008000,0x00800000,0x00000000};
  3880. long extendTab[5] = {0,0xffffff00,0xffff0000,0xff000000,0x00000000};
  3881. #endif
  3882.  
  3883. /*-->SignExtend*/
  3884. /**********************************************************************/
  3885. /****************************  SignExtend  ****************************/
  3886. /**********************************************************************/
  3887. long
  3888. SignExtend(fp, n)   /* return n byte quantity from file fd */
  3889. register FILE *fp;  /* file pointer    */
  3890. register int    n;  /* number of bytes */
  3891. {
  3892.     int     n1;     /* number of bytes      */
  3893.     long    x,x0;      /* number being constructed */
  3894.     x = getc(fp);   /* get first (high-order) byte */
  3895.     n1 = n--;
  3896.     while (n--)  {
  3897.         x <<= 8;
  3898.         x |= getc(fp);
  3899.     }
  3900. /*
  3901.  *   NOTE: This code assumes that the right-shift is an arithmetic, rather
  3902.  *   than logical, shift which will propagate the sign bit right.   According
  3903.  *   to Kernighan and Ritchie, this is compiler dependent!
  3904.  */
  3905.  
  3906. /*
  3907.   x0 = x;
  3908.  */
  3909.  
  3910. #ifdef ARITHMETIC_RIGHT_SHIFT
  3911.     x <<= 32 - 8 * n1;
  3912.     x >>= 32 - 8 * n1; /* sign extend */
  3913. #else
  3914.     if (x & signTab[n1]) x |= extendTab[n1];
  3915. #endif
  3916.  
  3917. /*
  3918.     fprintf(stderr,"\tSignExtend(fp,%d)=%X, was=%X,%d\n", n1, x,x0,x0&signTab[n1]);
  3919.   */  
  3920.  
  3921. #ifdef DEBUG
  3922.     if (Debug)
  3923.         fprintf(stderr,"\tSignExtend(fp,%d)=%X\n", n1, x);
  3924. #endif
  3925.     return(x);
  3926. }
  3927.  
  3928.  
  3929. /*-->SkipFontDef*/
  3930. /**********************************************************************/
  3931. /****************************  SkipFontDef  ***************************/
  3932. /**********************************************************************/
  3933. void
  3934. SkipFontDef()
  3935. {
  3936.     int     a, l;
  3937.     char    n[STRSIZE];
  3938.  
  3939.     (void) NoSignExtend(dvifp, 4);
  3940.     (void) NoSignExtend(dvifp, 4);
  3941.     (void) NoSignExtend(dvifp, 4);
  3942.     a = (int) NoSignExtend(dvifp, 1);
  3943.     l = (int) NoSignExtend(dvifp, 1);
  3944.     GetBytes(dvifp, n, a + l);
  3945. }
  3946.  
  3947.  
  3948. /*-->Warning*/
  3949. /**********************************************************************/
  3950. /*****************************  Warning  ******************************/
  3951. /**********************************************************************/
  3952. void                           /* issue a warning */
  3953. Warning(fmt, a, b, c, d)
  3954. char    *fmt;         /* format    */
  3955. char    *a, *b, *c, *d;   /* arguments */
  3956. {
  3957. #ifndef vms
  3958.     G_errenc = 1;
  3959. #else
  3960.     G_errenc = (SS$_ABORT | STS$M_INHIB_MSG);  /* no message on screen */
  3961. #endif
  3962.     if ( G_nowarn || G_quiet )
  3963.         return;
  3964.  
  3965.     fprintf(stderr, "warning : ");
  3966.     fprintf(stderr, fmt, a, b, c, d);
  3967.     fprintf(stderr, "\n");
  3968. }
  3969.  
  3970. void
  3971. PutWord(w)
  3972. int     w;
  3973. {
  3974.     EMITC((char)(w >> 8) & 0xff);
  3975.     EMITC((char)w & 0xff);
  3976. }
  3977.  
  3978.  
  3979. #ifdef IBM3812
  3980. /*-->PMPout*/
  3981. /*****************************************************************************/
  3982. /* This routine produces the PMP-envelopes for the 3812. Its semantics are:
  3983.  
  3984.    first arg == 0  ... flush buffer
  3985.    first arg == -1 ... number of bytes specified in the second argument
  3986.                have to be continuous, that is they must not
  3987.                be disrupted by ENTER PMP etc.
  3988.    first arg > 0       output first arg bytes
  3989.  
  3990.                If arg2 > OUTBUFSIZE ... flush buffer,
  3991.                         switch to unbuffered mode
  3992.                         (dont't collect PMP commands)
  3993.                If arg2+bufferpointer > OUTBUFSIZE ... flush buffer,
  3994.                         block will fit into buffer
  3995.                otherwise ..... block will fit into buffer
  3996.  
  3997.   Buffering is done to reduce the ENTER PMP-commands. Initially
  3998.   the 3812 is in PC-ASCII mode. In order to issue a PMP-command it is
  3999.   necessary to enter PMP mode. The ENTER-PMP-command contains the
  4000.   number of bytes that will be interpreted as PMP-commands. In the
  4001.   most naive approach for each primitive command (eg. set cursor) you
  4002.   have to produce a seperate ENTER-PMP-envelope (5 bytes). It is
  4003.   favourable to collect as many PMP commands as possible in one envelope. */
  4004. /*****************************************************************************/
  4005. void
  4006. PMPout(l, s)
  4007. char    *s;
  4008. int     l;
  4009. {
  4010.     static char     buffer[OUTBUFSIZE];
  4011.     static unsigned short   bp = 0;         /* range 0..OUTBUFSIZE */
  4012.     static long     continuous = 0l;
  4013.     static bool buffered = TRUE;
  4014.  
  4015.     if (l == 0) {
  4016.         if (bp == 0)
  4017.             return;
  4018.         EMIT(outfp, "\033[C%c%c", (unsigned char)(bp & 0xFF),
  4019.             (unsigned char)(bp >> 8));
  4020.         EMITB((int)bp, buffer);
  4021.         bp = 0;
  4022.         return;
  4023.     }
  4024.     if (l == -1) {
  4025.         continuous = (long)s;
  4026.         if (continuous + (long)bp + 5l > (long) OUTBUFSIZE)
  4027.             PMPflush;
  4028.         buffered = (bool) ((continuous + 5l <= (long) OUTBUFSIZE));
  4029.         if (!buffered) {
  4030.             EMIT(outfp, "\033[C%c%c",
  4031.                 (unsigned char)(continuous & 0xFF),
  4032.                 (unsigned char)((continuous >> 8) & 0xFF));
  4033.         }
  4034.         return;
  4035.     }
  4036.     if (buffered) {
  4037.         register int    i;
  4038.         if ( ((long)l + bp) > OUTBUFSIZE)
  4039.             PMPflush;
  4040.         for (i = 0; i < l; i++)
  4041.             buffer[bp+i] = s[i];
  4042.         bp += (unsigned short)l;
  4043.     } else {
  4044.         EMITB((int)l, s);
  4045.         buffered = (bool) ((continuous -= (long)l) <= 0) ;
  4046.     }
  4047. }
  4048.  
  4049.  
  4050. void
  4051. PMPoutC(c)
  4052. char    (c);
  4053. {
  4054.     PMPout(1, &c);
  4055. }
  4056.  
  4057.  
  4058. #endif
  4059. #ifdef MSDOS
  4060. /*-->AssureBinary*/
  4061. /**********************************************************************/
  4062. /*************************** AssureBinary *****************************/
  4063. /**********************************************************************/
  4064. /* This procedure is both DOS AND MSC dependent. The MSC file open on */
  4065. /* a device ignores the 'binary' of the "wb" parameter and opens the  */
  4066. /* file in ascii mode. This procedure sets the file f to binary mode  */
  4067. /* if it is connected to a device that is not console input or output */
  4068. /* or the null device. For other operating systems this routine is    */
  4069. /* useless. (Background: MSDOS 3.2 Technical Reference upd 1 pg 6-137 */
  4070. /**********************************************************************/
  4071. void
  4072. AssureBinary(f)
  4073. FILE *f;
  4074. {
  4075.     union REGS regs;              /* registers for bios call */
  4076.  
  4077.     regs.h.ah = (unsigned char) 0x44;     /* IOCTL            */
  4078.     regs.h.al = (unsigned char) 0x00;     /* get device information   */
  4079.     regs.x.bx = (unsigned int) fileno(f); /* handle from MSC      */
  4080.     intdos(®s, ®s);         /* call DOS interrupt       */
  4081.                           /* ---> result in DX    */
  4082.  
  4083.     if (  (regs.h.dl & 0x80)     /* file handle points to a device */
  4084.          && !(regs.h.dl & 0x07) )    /* neither console i/o or null    */ {
  4085.  
  4086.         regs.h.dl  |= 0x20;      /* set BINARY bit in device info  */
  4087.  
  4088.         regs.h.ah = (unsigned char) 0x44;    /* IOCTL         */
  4089.         regs.h.al = (unsigned char) 0x01;    /* set device information*/
  4090.         regs.x.bx = (unsigned int) fileno(f); /* handle from MSC      */
  4091.         regs.h.dh = (unsigned char) 0x00;    /* clear DH          */
  4092.         intdos(®s, ®s);           /* call DOS interrupt     */
  4093.     }
  4094. }
  4095.  
  4096.  
  4097. #endif
  4098.  
  4099. #ifdef USEPXL
  4100. bool getbit ();
  4101. unsigned char   getnyb ();
  4102. long    pk_packed_num ();
  4103.  
  4104.  
  4105. #define  PKBYTE   *pkloc; pkloc ++
  4106. #define  OUTCHAR(c) raster_line_buf[bp]= (unsigned char)c; bp++
  4107.  
  4108. unsigned char   bitweight, inputbyte ;
  4109. unsigned char   dyn_f ;
  4110. unsigned char   *pkloc;
  4111. int     repeatcount;
  4112.  
  4113. void              /* <Read and translate raster description@>*/
  4114. PkRaster(ce, raster)
  4115. struct char_entry *ce;
  4116. bool raster;
  4117. {
  4118.     int     rp;
  4119.     int     current_line;
  4120.     int     wordwidth ;
  4121.     bool turnon;
  4122.     unsigned short  nbpl;
  4123.     long    rowsleft, word, wordweight, hbit, count, i, j, tl;
  4124.     long    row[101] ;
  4125.     unsigned char   raster_line_buf[BYTES_PER_PIXEL_LINE];
  4126.     unsigned short  bp;
  4127.  
  4128.  
  4129.     if (ce->charsize == HUGE_SIZE)
  4130.         Fatal( "cannot process currently PK font patterns of that size!\n");
  4131.  
  4132.  
  4133.     current_line = 0;
  4134.     pkloc = (unsigned char *)ce->where.address.pixptr;
  4135.     dyn_f = (unsigned char)(ce->flag_byte >> 4);
  4136.     turnon = (bool)((ce->flag_byte & 8) == 8);
  4137.     wordwidth = (int)(ce->width + 31) >> 5 ;
  4138.     nbpl = ((int)(ce->width) +  7) >> 3;
  4139.  
  4140.     bitweight = 0 ;
  4141.     if (dyn_f == 14) {
  4142.         /*printf("<Get raster by bits@>\n");*/
  4143.         for (i = 1; i <= (long)ce->height; i++) {
  4144.         word = 0 ;
  4145.         wordweight = 31 ;
  4146.         bp = 0;            /* Sowa */
  4147.  
  4148. #ifdef DRAWGLYPH
  4149.            printf("     |");
  4150. #endif
  4151.         for (j = 1; j <= (long) ce->width; j++) {
  4152.             bool getbit;
  4153.             /* bp = 0;               SOWA/
  4154. /*******************************************begin Getbit *********/
  4155.             bitweight /= 2 ;
  4156.             if ( bitweight == 0 ) {
  4157.                 inputbyte = PKBYTE ;
  4158.                 bitweight = 128 ;
  4159.             }
  4160.             getbit = (bool)
  4161.              ( inputbyte >= bitweight ) ;
  4162.             if ( getbit )
  4163.                 inputbyte -= bitweight ;
  4164. /*********************************************end Getbit *********/
  4165.  
  4166.             if (getbit)
  4167.                 word += power[wordweight] ;
  4168.  
  4169.             wordweight --;
  4170.             if (wordweight == -1) {
  4171.  
  4172. #ifdef DRAWGLYPH
  4173.    { int k;
  4174.      for (k=31; k>=0; k--) {
  4175.          if ((power[k] & word)!=0) printf("M");
  4176.          else printf(".");
  4177.      }
  4178.    }
  4179. #endif
  4180.  
  4181.             OUTCHAR((word >> 24 & 0xFF));
  4182.             OUTCHAR((word >> 16 & 0xFF));
  4183.             OUTCHAR((word >> 8 & 0xFF));
  4184.             OUTCHAR((word    & 0xFF));
  4185.  
  4186.             word = 0 ;
  4187.             wordweight = 31 ;
  4188.             }
  4189.         }
  4190.         if (wordweight < 31) {
  4191. #ifdef COMMENT
  4192. #ifdef DRAWGLYPH
  4193.    { int k;
  4194.      for (k=15; k>=0; k--) {
  4195.         if ((power[k] & word)!=0) printf("Z");
  4196.         else printf(":");
  4197.      }
  4198.     }
  4199.     printf("|\n ----|");
  4200. #endif
  4201. #endif
  4202.  
  4203.             for (j = 3; j >= (wordwidth * 4 - (long)nbpl);
  4204.             j--) {
  4205.  
  4206.                 OUTCHAR(((word >> (j << 3)) & 0xff));
  4207.  
  4208. #ifdef DRAWGLYPH
  4209.    { int k;
  4210.      for (k=7; k>=0; k--) {
  4211.         if ((power[k] & ((word >> (j << 3)) & 0xff))!=0) printf("M");
  4212.         else printf(".");
  4213.      }
  4214.    }
  4215. #endif
  4216.  
  4217.             }
  4218.         }
  4219.  
  4220.         if (raster) {
  4221.             RasterLine(ce, (unsigned int)nbpl,
  4222.                 current_line, raster_line_buf);
  4223.             current_line++;
  4224.         } else
  4225.             EMITL(bp, raster_line_buf);
  4226.  
  4227. #ifdef DRAWGLYPH
  4228.    printf("|\n");
  4229. #endif
  4230.         }
  4231.     } else {
  4232.         /* printf("@<Create normally packed raster@>\n"); */
  4233.         rowsleft = (long) ce->height ;
  4234.         hbit = (long) ce->width ;
  4235.         repeatcount = 0 ;
  4236.         wordweight = 32 ;
  4237.         word = 0 ;
  4238.         rp = 1 ;
  4239.         while ( rowsleft > 0 ) {
  4240.         count = pk_packed_num() ;
  4241.         bp = 0;
  4242.  
  4243.         while (count > 0) {
  4244.             if ((count < wordweight) && (count < hbit)) {
  4245.             if (turnon)
  4246.                 word +=
  4247.                     gpower[wordweight] -
  4248.                     gpower[wordweight - count] ;
  4249.  
  4250.             hbit -= count ;
  4251.             wordweight -= count ;
  4252.             count = 0 ;
  4253.             } else if ((count >= hbit) && (hbit <=
  4254.             wordweight)) {
  4255.  
  4256.             if (turnon)
  4257.                 word +=
  4258.                     gpower[wordweight] -
  4259.                     gpower[wordweight - hbit] ;
  4260.  
  4261.             row[rp] = word ;
  4262.  
  4263.             /* printf(" @<Send row@> \n");*/
  4264.             for (i = 0; i <= (long) repeatcount; i++) { int ii;
  4265.  
  4266. #ifdef DRAWGLYPH
  4267.   printf("***  |");
  4268. #endif
  4269.                 for (ii = 1; ii < wordwidth; ii++) {
  4270.                 tl = row[ii];
  4271.  
  4272.                 OUTCHAR((tl >> 24 & 0xFF));
  4273.                 OUTCHAR((tl >> 16 & 0xFF));
  4274.                 OUTCHAR((tl >> 8  & 0xFF));
  4275.                 OUTCHAR((tl       & 0xFF));
  4276.  
  4277. #ifdef DRAWGLYPH
  4278.    { int k;
  4279.      for (k=31; k>=0; k--)  {
  4280.          if ((power[k] & row[ii])!=0) printf("M");
  4281.          else printf(".");
  4282.      }
  4283.    }
  4284. #endif
  4285.                 }
  4286.                 tl = row[wordwidth];
  4287.                 for (j = 3; j >= (wordwidth *4 - (long)nbpl);
  4288.                  j--) {
  4289.  
  4290.                  OUTCHAR(((tl >> (j << 3)) & 0xff));
  4291.  
  4292. #ifdef DRAWGLYPH
  4293.    { int k;
  4294.      for (k=7; k>=0; k--) {
  4295.          if ((power[k] & ((tl >> (j << 3)) & 0xff))!=0) printf("M");
  4296.          else printf(".");
  4297.      }
  4298.    }
  4299. #endif
  4300.                 }
  4301.  
  4302.                 if (raster) {
  4303.                     RasterLine(ce,
  4304.                     (unsigned int)nbpl,
  4305.                      current_line,
  4306.                      raster_line_buf);
  4307.                     current_line++;
  4308.                 } else
  4309.                     EMITL(bp, raster_line_buf);
  4310.  
  4311.                 bp = 0;
  4312.  
  4313. #ifdef DRAWGLYPH
  4314.    printf("|  ");
  4315.    for (j=1;j<=(long)wordwidth;j++) printf("%02lX/",row[j]);
  4316.    printf(" raster=%d\n",raster);
  4317. #endif
  4318.             }
  4319.  
  4320.             rowsleft -=  (long)repeatcount + 1 ;
  4321.             repeatcount = 0 ;
  4322.             rp = 1 ;
  4323.             word = 0 ;
  4324.             wordweight = 32 ;
  4325.             count -= hbit ;
  4326.             hbit = (long)ce->width ;
  4327.             } else {
  4328.             if (turnon) word += gpower[wordweight] ;
  4329.             row[rp] = word ;
  4330.             rp = rp + 1 ;
  4331.             word = 0 ;
  4332.             count -= wordweight ;
  4333.             hbit -= wordweight ;
  4334.             wordweight = 32 ;
  4335.             }
  4336.         }   /* .....while count > 0 */
  4337.         if (turnon)
  4338.             turnon = FALSE;
  4339.         else
  4340.             turnon = TRUE;
  4341.         } /* ...... rowsleft > 0 */
  4342.         if ((rowsleft != 0) || (hbit != (long)ce->width))
  4343.             Fatal("Bad pk file----more bits than required!\n");
  4344.     } /* .... create normally packed raster */
  4345. }
  4346.  
  4347.  
  4348. unsigned char   getnyb ()
  4349. {
  4350.     register unsigned char  temp ;
  4351.     if ( bitweight == 0 ) {
  4352.         inputbyte = PKBYTE ;
  4353.         bitweight = 16 ;
  4354.     }
  4355.     temp = inputbyte / bitweight ;
  4356.     inputbyte -= temp * bitweight ;
  4357.     bitweight /= 16 ;
  4358.     return ( temp ) ;
  4359. }
  4360.  
  4361.  
  4362. long
  4363. pk_packed_num ()
  4364. { /*@<Packed number procedure@>= */
  4365.     register int    i;
  4366.     long    j;
  4367.  
  4368.     i = (int)getnyb();
  4369.     if (i == 0) {
  4370.         do {
  4371.             j = (long)getnyb();
  4372.             i++;
  4373.         } while (j == 0) ;
  4374.         while (i > 0) {
  4375.             j = j * 16 + (long)getnyb() ;
  4376.             i--;
  4377.         };
  4378.         return (j - 15 + (13 - dyn_f) * 16 + dyn_f) ;
  4379.     } else if (i <= (int)dyn_f) {
  4380.         return ((long)i);
  4381.     } else if (i < 14) {
  4382.         return ((i-(long)dyn_f - 1) * 16 + (long)getnyb() + dyn_f + 1);
  4383.     } else {
  4384.         if (i == 14) {
  4385.             repeatcount = (int) pk_packed_num() ;
  4386.         } else {
  4387.             repeatcount = 1 ;
  4388.         }
  4389.         /*      printf("repeatcount = [%d]\n",repeatcount);    */
  4390.         return (pk_packed_num()) ;    /* tail end recursion !! */
  4391.     }
  4392. }
  4393. #endif  
  4394.  
  4395. #ifndef USEPXL
  4396. void bad_gf(n)
  4397.     int n;
  4398. {
  4399.     Fatal("Bad gf file, case %d\n",n);      /* See gf.c */
  4400. }
  4401. #endif
  4402. /*-->FormFeed*/
  4403. /**********************************************************************/
  4404. /*****************************  FormFeed ******************************/
  4405. /**********************************************************************/
  4406. void
  4407. FormFeed()
  4408. {
  4409.  
  4410. #ifdef IBM3812
  4411.     unsigned short pages;
  4412.     if ( (ndone == 0) && (FirstAlternate)){
  4413.         for (pages = 1; pages < ncopies; pages++) {
  4414.             PMPout(2, "\321\300"); /* PMP-command xD1C0 */
  4415.         }
  4416.         PMPout(2, "\321\100"); /* PMP-command xD140 */
  4417.     } else {
  4418.         for (pages = 1; pages < ncopies; pages++){
  4419.             PMPout(2, "\321\200"); /* PMP-command xD180 */
  4420.         }
  4421.         PMPout(2, "\321\0"); /* PMP-command xD100 */
  4422.     }
  4423. #endif
  4424. #ifdef LJ
  4425.     EMITC('\f');
  4426. #endif
  4427. }
  4428.